Module:CountryData/cacheG: Difference between revisions

From Project Basis
Jump to navigation Jump to search
m Changed protection settings for "Module:CountryData/cacheG" ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite))
 
m 1 revision imported
 
(No difference)

Latest revision as of 13:29, 19 July 2026

Documentation for this module may be created at Module:CountryData/cacheG/doc

local CountryData = require('Module:CountryData')
local pages = {'Armenia', 'Cuba', 'Cyprus', 'Ecuador', 'Ghana', 'Iceland', 'Jamaica', 'Luxembourg', 'Paraguay', 'Tunisia', 'Vietnam', 'West_Germany'}
local p = {
    data = {}
}
local frame = mw.getCurrentFrame()

for _,v in ipairs(pages) do
    p.data[v] = CountryData.gettable(frame, v, {})
end

return p