Jump to content

Module:Multicat

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jackmcbarn (talk | contribs) at 03:55, 28 December 2016 (use the parms variable instead of an expression that's just the same thing). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local categories = {}
holder = ""
function categories.list(parameters)
	for count, parms in pairs(parameters.args) do 
		holder = holder .. '[[category:' .. parms .. ']]'
	end
	return holder
end
return categories