Module:WikidataIB/nolinks: Difference between revisions

From Random Island Wiki
Jump to navigation Jump to search
>Galobtter
m (Changed protection level for "Module:WikidataIB/nolinks": High-risk Lua module: 600000+ transclusions ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite)))
m (1 revision imported)
 
(One intermediate revision by one other user not shown)
Line 40: Line 40:
"Turkey",
"Turkey",
"United Kingdom",
"United Kingdom",
"UK",
"United States",
"United States",
"USA",
"Wales",
"Wales",
}
}

Latest revision as of 11:57, 6 September 2021

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",
	"UK",
	"United States",
	"USA",
	"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