Jump to content

Module:Anchor

විකිපීඩියා වෙතින්
08:00, 20 සැප්තැම්බර් 2024 වන විට Lee (සාකච්ඡාව | දායකත්ව) (en:Module:Anchor වෙතින් එක් සංශෝධනයක්) විසින් සිදු කර ඇති සංශෝධන
(වෙනස) ← පැරණි සංශෝධනය | වත්මන් සංශෝධනය (වෙනස) | නව සංශෝධනය → (වෙනස)

-- This module implements {{anchor}}.

local getArgs = require('Module:Arguments').getArgs
local tableTools = require('Module:TableTools')

local p = {}

function p.main(frame)
	-- Get the positional arguments from #invoke, remove any nil values,
	-- and pass them to p._main.
	local args = getArgs(frame)
	local argArray = tableTools.compressSparseArray(args)
	return p._main(unpack(argArray))
end

function p._main(...)
	-- Generate the list of anchors.
	local anchors = {...}
	local ret = {}
	for _, anchor in ipairs(anchors) do
		ret[#ret + 1] = '<span class="anchor" id="' .. anchor .. '"></span>'
	end
	return table.concat(ret)
end

return p
"https://si.wikipedia.org/w/index.php?title=Module:Anchor&oldid=706105" වෙතින් සම්ප්‍රවේශනය කෙරිණි