မေႃႇၵျူး:template demo
Appearance
Documentation for this module may be created at မေႃႇၵျူး:template demo/doc
local export = {}
local template_link = require("Module:template parser").templateLink
local pairs = pairs
local remove = table.remove
local shallowcopy = require("Module:table").shallowcopy
function export.show(frame)
local args = shallowcopy(pairs(frame.args)() and frame.args or frame:getParent().args)
local template_name = remove(args, 1)
return template_link(template_name, args) .. " ⇒<br style=\"line-height: 200%;\" />"
.. frame:expandTemplate {title = template_name, args = args}
end
return export