Jump to content

Module:Category handler/shared

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Mr. Stradivarius (talk | contribs) at 23:46, 6 July 2014 (move blacklist-matching function from Module:Category handler). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

-- This module contains shared functions used by [[Module:Category handler]]
-- and its submodules.

local blacklist = require('Module:Category handler/blacklist')

local function matchesBlacklist(page)
    if type(page) ~= 'string' then return end
    for i, pattern in ipairs(blacklist) do
        local match = mw.ustring.match(page, pattern)
        if match then
            return match
        end
    end
end

return {
	matchesBlacklist = matchesBlacklist
}