Module:Category handler/data
MyWikiBiz, Author Your Legacy — Monday November 04, 2024
Jump to navigationJump to searchThis module is used in conjunction with the category handler module to manage categories; it is a very important template used on millions of pages. Template:Module rating Template:Used in system
-- This module assembles data to be passed to [[Module:Category handler]] using -- mw.loadData. This includes the configuration data and whether the current -- page matches the title blacklist. local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesBlacklist( title.prefixedText, blacklist ) data.currentTitleNamespaceParameters = mShared.getNamespaceParameters( title, mShared.getParamMappings() ) return data