Module:Country extract
Appearance
![]() | This module is subject to page protection. It is a highly visible module in use by a very large number of pages, or is substituted very frequently. Because vandalism or mistakes would affect many pages, and even trivial editing might cause substantial load on the servers, it is protected from editing. |
![]() | This Lua module is used on 413,000+ pages, or roughly 47% of all pages. To avoid major disruption and server load, any changes should be tested in the module's /sandbox or /testcases subpages, or in your own module sandbox. The tested changes can be added to this page in a single edit. Consider discussing changes on the talk page before implementing them. |
local p = {}
--[[
to enable us to replicate the current functioning of CountryAbbr and CountryAbbr2
We need to deal with
1 alternative names ISO 3166 should do that
]]
function p.extractCountry(frame)
local rv= mw.ustring.toNFC (frame.args[1])
rv = mw.ustring.gsub(rv,"{{","")
return rv
end
--[[
]]
function p.helper(frame)
local rv= mw.ustring.toNFC (frame.args[1])
return rv
end
return p