Bu modulun sənədləşdirmə səhifəsi Modul:Country data/doc səhifəsində yaradıla bilər
local p = {}
function p.standarddisplay(countryId, args)
if not countryId then
return ""
end
local label = mw.wikibase.getLabel(countryId) or ""
local flag = mw.wikibase.getSitelink(countryId)
if flag then
return "[[" .. flag .. "|20px]]"
else
return label
end
end
return p