이 모듈에 대한 설명문서는 모듈:anchor/설명문서에서 만들 수 있습니다

local html_create = mw.html.create
local process_params = require("Module:parameters").process
local tostring = tostring

local export = {}

function export.main(frame)
	local args = process_params(frame:getParent().args, {
		{required = true, list = true},
	})[1]
	
	local anchors = html_create()
	for i = 1, #args do
		local arg = args[i]
		anchors = anchors:tag("span")
			:addClass("template-anchor")
			:attr("id", arg)
			:done()
	end
	
	return tostring(anchors)
end

return export