Wookieepedia

READ MORE

Wookieepedia
Advertisement
Wookieepedia

Documentation for this module may be created at Module:SpecialCategorizer/blacklist/doc

-- 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.
	'^Template:UnusedPage$',
	'^Template:TOR updates$',
	'^Template:FFG$',
	'^Template:Multiple issues$',
	'^Template:Stub box$',
	'^Template:.*stub$',

	-- Don't categorize subpages of the following pages.
	'^Wookieepedia:Userbox proposal/',
	'^Wookieepedia:Template messages/'
}

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()
}
Advertisement