Jump to content

Module:Multicat

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Kazvorpal (talk | contribs) at 02:44, 28 December 2016. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local categories = {}
local results = ""
function categories.list(...)
--	for i, parm in ipairs(arg) do 
--		results = results .. '[[category:' .. tostring(arg[i]) .. ']]'
--	end
    for i,v in ipairs(arg) do
      results = results .. tostring(v) .. "\t"
    end
    results = results .. "\n"
	return results
end
return categories