Module:Interwiki map
Documentation for this module may be created at Module:Interwiki map/doc
local p = {}
function p.main( frame )
local decoded = mw.text.jsonDecode(frame.args[1])
local output = ''
for k, v in ipairs(decoded) do
output = output .. '| ' .. v['prefix'] .. ' || ' .. v['url'] .. '\n|-\n'
end
return output
end
return p