View source for Module:Parameter names example
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
-- This module implements {{parameter names example}}.
local p = {}
local function makeParam(s)
local lb = '{'
local rb = '}'
return lb:rep(3) .. s .. rb:rep(3)
end
local function italicize(s)
return "''" .. s .. "''"
end
local function plain(s)
return s
end
function p._main(args, frame)
-- Find how we want to format the arguments to the template.
000
1:0
Template used on this page:
Return to Module:Parameter names example.