Module:ColorParse: Difference between revisions

140 bytes added ,  22:36, 24 May 2020
add template arg processing
(implemented of how i assume alternation works)
(add template arg processing)
Line 142: Line 142:
     end
     end
     return table.concat(finaltbl)
     return table.concat(finaltbl)
end
function p.shadermain(frame)
    local args = process_args.merge(true)
    return p.shader(args['text'], args['colors'], args['type'])
end
end