Documentation for this module may be created at Module:Accreditation/doc
local p = {}
writers = ""
artists = ""
processors = ""
function p.info(frame)
writers=frame.args.Writers
artists=frame.args.Artists
processors=frame.args.Processors
local w = {}
local x = 0;
for i in string.gmatch(writers, "%S+") do
w[x] = i
x=x+1;
end
end
return p