Returns a list of categories based on the string of items that are used for crafting.
Used in the creation of DPL categories for crafting templates.
local p = {}
function p.parseCats(frame)
local s = tostring(frame.args[1])
print(s)
mw.log()
return s
end
return p