local p = {}
local getArgs = require('Module:Arguments').getArgs
function p._main(args, frame)
local arg = args
code = ""
for index, val in ipairs(arg) do
if index == 1 then
code = code .. val
else
code = code .. frame:expandTemplate{title = "ac", args = {val}}
end
end
return code
end
function p.main(frame)
local args = getArgs(frame, {
parentFirst = true,
})
return p._main(args, frame)
end
return p