Module:CountryData/cacheK: Difference between revisions
From EunuchWiki
m Changed protection settings for "Module:CountryData/cacheK": High-risk template or module: 8268 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 20:15, 31 March 2024
Documentation for this module may be created at Module:CountryData/cacheK/doc
local CountryData = require('Module:CountryData')
local pages = {'Afghanistan', 'Angola', 'Bahrain', 'Democratic_Republic_of_the_Congo', 'East_Germany', 'Fiji', 'Honduras', 'Jordan', 'Kuwait', 'Mali', 'Taiwan', 'Tanzania'}
local p = {
data = {}
}
local frame = mw.getCurrentFrame()
for _,v in ipairs(pages) do
p.data[v] = CountryData.gettable(frame, v, {})
end
return p