Module:CountryData/cacheA: Difference between revisions
m (Changed protection settings for "Module:CountryData/cacheA": High-risk template or module: 11729 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 02:42, 15 February 2024
Documentation for this module may be created at Module:CountryData/cacheA/doc
local CountryData = require('Module:CountryData') local pages = {'Australia', 'Canada', 'France', 'Germany', 'India', 'Italy', 'Japan', 'Netherlands', 'Poland', 'Russia', 'Spain', 'United_States'} local p = { data = {} } local frame = mw.getCurrentFrame() for _,v in ipairs(pages) do p.data[v] = CountryData.gettable(frame, v, {}) end return p