Module:ListCategories

From MEpedia, a crowd-sourced encyclopedia of ME and CFS science and history

Documentation for this module may be created at Module:ListCategories/doc

local p = {}
 
function p.main( frame )
 
	local category = frame.args[1]
 	local which = frame.args[2]
 	return mw.site.stats.pagesInCategory(category or 'Fundamental', which or 'all')
end
 
return p