Modulo:Sandbox/wikivoyage

local p = {}

function p.list(frame)
    entity = mw.wikibase.getEntity()
    if not entity then return 0 end
    local keys = {'*'}
    for  key, value in pairs(entity.sitelinks.itwikivoyage) do
        keys[#keys+1]=key .. ":" .. value
    end
    return table.concat(keys, "\n*")
end

return p