Difference between revisions of "Module:WikidataIB/nolinks"
Jump to navigation
Jump to search
m (1 revision imported) |
en>Ad Orientem m (Protected "Module:WikidataIB/nolinks": High-risk Lua module: conforming protection to Module:WikidataIB and allow extended confirmed editors to edit. Per request at RfPP ([Edit=Require extended confirmed access] (indefinite) [Move=Require exten...) |
||
Line 3: | Line 3: | ||
--[[ | --[[ | ||
The values here are the English sitelinks for items that should not be linked. | The values here are the English sitelinks for items that should not be linked. | ||
− | These 36 are not | + | These 36 are not definitive and may be altered to suit. |
--]] | --]] | ||
p.items = { | p.items = { |
Revision as of 04:17, 7 January 2019
Documentation for this module may be created at Module:WikidataIB/nolinks/doc
local p ={}
--[[
The values here are the English sitelinks for items that should not be linked.
These 36 are not definitive and may be altered to suit.
--]]
p.items = {
"Australia",
"Austria",
"Belgium",
"Canada",
"China",
"Denmark",
"England",
"France",
"Germany",
"Greece",
"Hungary",
"Iceland",
"India",
"Republic of Ireland",
"Israel",
"Italy",
"Jamaica",
"Japan",
"Luxembourg",
"Mexico",
"Netherlands",
"New Zealand",
"Northern Ireland",
"Norway",
"Poland",
"Portugal",
"Russia",
"Scotland",
"South Africa",
"Spain",
"Sweden",
"Switzerland",
"Turkey",
"United Kingdom",
"United States",
"Wales",
}
--[[
This provides a convenient way to create a test whether an item is on the list.
--]]
p.itemsindex = {}
for i, v in ipairs(p.items) do
p.itemsindex[v] = true
end
return p