Module:WikidataIB/nolinks: Difference between revisions
From Zoophilia Wiki
Jump to navigationJump to search
meta>RexxS create module to define some common terms which should not be linked. |
m 8 revisions imported |
||
(7 intermediate revisions by 4 users not shown) | |||
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 = { | ||
Line 40: | Line 40: | ||
"Turkey", | "Turkey", | ||
"United Kingdom", | "United Kingdom", | ||
"UK", | |||
"United States", | "United States", | ||
"USA", | |||
"Wales", | "Wales", | ||
} | } | ||
Line 48: | Line 50: | ||
--]] | --]] | ||
p.itemsindex = {} | p.itemsindex = {} | ||
for i, v in ipairs(items) do | for i, v in ipairs(p.items) do | ||
itemsindex[v] = true | p.itemsindex[v] = true | ||
end | end | ||
return p | return p |
Latest revision as of 15:19, 3 September 2020
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