Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Category handler/shared

Revision as of 14:13, 7 July 2014 by wikisource>Mr. Stradivarius (make this output either true or false, and switch indentation to tabs)

Documentation for this module may be created at Module:Category handler/shared/doc

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

local function matchesBlacklist(page, blacklist)
	for i, pattern in ipairs(blacklist) do
		local match = mw.ustring.match(page, pattern)
		if match then
			return true
		end
	end
	return false
end

return {
	matchesBlacklist = matchesBlacklist
}
Cookies help us deliver our services. By using our services, you agree to our use of cookies.