This module contains the blacklist used by Module:Category handler. Pages that match Lua patterns in this list will not be categorized unless categorization is explicitly requested.
Module source
return {
'^Portal:Main$', -- don't categorize the main page.
-- Don't categorize the following pages or their subpages.
-- "%f[/\0]" matches if the next character is "/" or the end of the string.
'^Memory Alpha:Cascade%-protected items%f[/\0]',
-- Don't categorize subpages of these pages, but allow
-- categorization of the base page.
'^Memory Alpha:Template index/.*$',
-- Don't categorize archives.
'/[aA]rchive',
}