Title: Module:Category handler/data - freem URL Source: https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata Markdown Content: _Documentation for this module may be created at [Module:Category handler/data/doc](https://freemwiki.com/index.php?title=Module:Category\_handler/data/doc&action=edit&redlink=1 "Module:Category handler/data/doc (page does not exist)")_ [](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-1)-- This module assembles data to be passed to [[[Module:Category handler]]](https://freemwiki.com/wiki/Module:Category_handler "Module:Category handler") using[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-2)-- mw.loadData. This includes the configuration data and whether the current[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-3)-- page matches the title blacklist.[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-4)[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-5)local data = require(['Module:Category handler/config'](https://freemwiki.com/wiki/Module:Category_handler/config))[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-6)local mShared = require(['Module:Category handler/shared'](https://freemwiki.com/wiki/Module:Category_handler/shared))[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-7)local blacklist = require(['Module:Category handler/blacklist'](https://freemwiki.com/wiki/Module:Category_handler/blacklist))[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-8)local title = mw.title.getCurrentTitle()[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-9)[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-10)data.currentTitleMatchesBlacklist = mShared.matchesBlacklist([](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-11)title.prefixedText,[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-12)blacklist[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-13))[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-14)[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-15)data.currentTitleNamespaceParameters = mShared.getNamespaceParameters([](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-16)title,[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-17)mShared.getParamMappings()[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-18))[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-19)[](https://freemwiki.com/index.php?oldid=580041&title=Module%3ACategory_handler%2Fdata#L-20)return data