Content deleted Content added
debug |
simplify |
||
Line 27:
for k,v in pairs(params) do
local key = mw.ustring.rep('\t', depth) .. '["' .. k .. '"] = '
if type(v) == "string" then
output[#output+1] =
elseif type(v) == "table" then
local subout = p._main(v, depth+1)
output[#output+1] =
end
end
|