Jump to content
Toggle menu
  • 8 articles
  • 75 files
  • 7 users
  • 37.8K edits
Neodyland Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Category handler/shared

From Neodyland Wiki
Revision as of 23:46, 6 July 2014 by commons>Mr. Stradivarius (move blacklist-matching function from Module:Category handler)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Module documentation[ create · purge ]
-- 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
}
Cookies help us deliver our services. By using our services, you agree to our use of cookies.