Module:CountryData/cacheB: Difference between revisions
From EunuchWiki
m Changed protection settings for "Module:CountryData/cacheB": High-risk template or module: 8096 transclusions (more info) ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite)) |
m 1 revision imported |
(No difference)
|
Latest revision as of 18:41, 31 March 2024
Documentation for this module may be created at Module:CountryData/cacheB/doc
local CountryData = require('Module:CountryData')
local pages = {'Argentina', 'Austria', 'Belgium', 'Brazil', 'China', 'Czech_Republic', 'England', 'Iran', 'Sweden', 'Switzerland', 'Turkey', 'United_Kingdom'}
local p = {
data = {}
}
local frame = mw.getCurrentFrame()
for _,v in ipairs(pages) do
p.data[v] = CountryData.gettable(frame, v, {})
end
return p