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:56, 28 December 2016 (fix variable scope). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local categories = {}
function categories.list(parameters)
	local holder = ""
	for count, parms in pairs(parameters.args) do 
		holder = holder .. '[[category:' .. parms .. ']]'
	end
	return holder
end
return categories