Jump to content

Module:Interwiki map

From Meta, a Wikimedia project coordination wiki
Module documentation

Pulls data from Interwiki map/list, to format the table rows for Interwiki map.

local p = {}

function p.main( frame )
    local decoded = mw.loadJsonData( 'Interwiki map/list' )
    local output = ''
    for k, v in ipairs(decoded) do
    	output = output .. '| ' .. v['prefix'] .. ' || ' .. v['url'] .. '\n|-\n'
    end
    
    return output
end

return p