View source for Module:Template
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
p = {}
p.format_named_parameters = function(frame)
local args = ""
for key, arg in pairs(frame.args) do
if type(key) ~= "number" then
args = args .. "\|" .. tostring(key) .. "=" .. tostring(arg)
end
end
return args
end
p.format_pname_parameters = function(frame)
return p.format_named_parameters ( frame:getParent())
end
return p
000
1:0
Template used on this page:
Return to Module:Template.