Baka gusto mong gumawa ng pahina ng dokumentasyon para sa Scribunto module na ito. Pwedeng mag-eksperimento ang mga patnugot sa pahina ng sandbox (gumawa | mirror) at testcases (gumawa) ng padron na ito. Magdagdag po ng mga kategorya sa subpage ng /doc. Mga subpage ng module.
-- This module contains shared functions used by [[Module:Category handler]]-- and its submodules.localp={}functionp.matchesBlacklist(page,blacklist)fori,patterninipairs(blacklist)dolocalmatch=mw.ustring.match(page,pattern)ifmatchthenreturntrueendendreturnfalseendfunctionp.getParamMappings(useLoadData)localdataPage='Module:Namespace detect/data'ifuseLoadDatathenreturnmw.loadData(dataPage).mappingselsereturnrequire(dataPage).mappingsendendfunctionp.getNamespaceParameters(titleObj,mappings)-- We don't use title.nsText for the namespace name because it adds-- underscores.localmappingsKeyiftitleObj.isTalkPagethenmappingsKey='talk'elsemappingsKey=mw.site.namespaces[titleObj.namespace].nameendmappingsKey=mw.ustring.lower(mappingsKey)returnmappings[mappingsKey]or{}endreturnp