Module:Sandbox/Ahecht: Difference between revisions

Content deleted Content added
br
rows2data
Line 30:
return table.concat(output)
end
 
function rows2data(frame)
args = frame.args
output = {}
for i=1,#args,1 do
output[i] = args[i]
end
for k,v in args do
if type(k) == 'string' then
output[#output+1] = k .. '=' .. v
end
end
return table.concat(output,';')
end
 
return p