Jump to content

Editing disabled for anonymous users

Revision as of 08:11, 20 March 2025 by Shia.k (talk | contribs) (Created page with "-- This module contains shared functions used by Module:Category handler -- and its submodules. local p = {} function p.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 function p.getParamMappings(useLoadData) local dataPage = 'Module:Namespace detect/data' if useLoadData then return mw.loadData(dataPage).mappings else return...")
Anonymous editing is currently disabled. Please log in to edit pages.

Return to Module:Category handler/shared.