Module:template: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
local export = {} | local export = {} | ||
function export.make_template(args, nested) | |||
if not args[i] then error("at least one argument must be given to {{temp}}") end | if not args[i] then error("at least one argument must be given to {{temp}}") end | ||
local out = {(nested and "") or "<code>", "{{[[Template:" .. args[1] .. "|" .. args[1] .. "]]"} | local out = {(nested and "") or "<code>", "{{[[Template:" .. args[1] .. "|" .. args[1] .. "]]"} |
Revision as of 14:37, 7 August 2023
Documentation for this module may be created at Module:template/documentation
local export = {}
function export.make_template(args, nested)
if not args[i] then error("at least one argument must be given to {{temp}}") end
local out = {(nested and "") or "<code>", "{{[[Template:" .. args[1] .. "|" .. args[1] .. "]]"}
local i = 2
while args[i] do
table.insert(out, "|" .. args[i])
i = i + 1
end
for key, value in require("Module:table").sortedPairs(args) do
if type(key) == "string" then
table.insert(out, "|" .. key .. "=" .. value)
end
end
table.insert(out, "}}" .. ((nested and "") or "</code>"))
return table.concat(out)
end
function export.show(frame)
return make_template(frame:getParent().args, false)
end
function export.showNested(frame)
return make_template(frame:getParent().args, true)
end
return export