Difference between revisions of "Module:SB Infobox Begin"
Jump to navigation
Jump to search
(Created page with "local getArgs = require('Module:Arguments').getArgs local p = {} function p.main(frame) local args = getArgs(frame) return p._main(args) end function p._main(args) local...") |
m |
||
(75 intermediate revisions by the same user not shown) | |||
Line 8: | Line 8: | ||
function p._main(args) | function p._main(args) | ||
local t = {} | |||
for i, v in ipairs(args) do | |||
t[i] = tostring(v) | |||
end | |||
return table.concat(t,"") | |||
end | end | ||
return p | return p |
Latest revision as of 02:57, 26 May 2021
Documentation for this module may be created at Module:SB Infobox Begin/doc