La documentación para este módulo puede ser creada en Módulo:SpecialCategorizer/blacklist/doc
-- Copied from https://starwars.wikia.com/wiki/Module:SpecialCategorizer/blacklist
-- Author [[User:Mr. Stradivarius]]
-- This is a blacklist for [[Module:SpecialCategorizer]]. It is loaded
-- with mw.loadData, which means it is only processed once per page rather than
-- once per template.
local blacklist = {
-- Don't categorize the following pages.
'^Plantilla:FFG',
-- Don't categorize subpages of the following pages.
'^Star Wars Wiki:Mensajes de plantillas/'
}
local function isBlacklisted()
local pagename = mw.title.getCurrentTitle().prefixedText
local ret = {}
for _, pattern in ipairs(blacklist) do
if mw.ustring.find(pagename, pattern) then
return true
end
end
return false
end
return {
isBlacklisted = isBlacklisted()
}
*Nota: Algunos de los enlaces son de afiliados, lo que significa que, sin costo adicional para ti, Fandom ganará una comisión si haces clic y realizas una subscripción. El contenido de la comunidad está disponible bajo CC-BY-SA a menos que se indique lo contrario.