Module:template

From Laenkea
Revision as of 21:30, 5 August 2023 by Maria (talk | contribs)
Jump to navigation Jump to search

Documentation for this module may be created at Module:template/documentation

local export = {}

local function make_template(frame, nested)
	local args = (frame:getParent() and frame:getParent().args) or frame.args
	local out = {(nested and "") or "<code>", "&#123;&#123;[[Template:" .. args[1] .. "]]"}
	local i = 2
	while args[i] do
		table.insert(out, "&#124;" .. args[i])
		i = i + 1
	end
	for key, value in require("Module:table").sortedPairs(args) do
		if type(key) == "string" then
			table.insert(out, "&#124;" .. key .. "=" .. value)
		end
	end
	table.insert(out, "&#125;&#125;" .. ((nested and "") or "</code>"))
	return table.concat(out)
end

function export.show(frame)
	return make_template(frame, false)
end

function export.showNested(frame)
	return make_template(frame, true)
end

return export