Content deleted Content added
debug |
No edit summary |
||
Line 40:
for k,v in pairs(args) do
if k and type(k) == 'string' then
tracking = tracking
if passthrough[k] then
targs[k] = v
tracking = tracking .. '<span style="color:green">' .. k .. '</span>; '
elseif (k:match('^list[0-9][0-9]*$')
or k:match('^content[0-9][0-9]*$') ) then
Line 48 ⟶ 49:
if (targs['list' .. n] == nil and args['group' .. n] == nil
and args['sect' .. n] == nil and args['section' .. n] == nil) then
targs['list' .. n] = concatstrings(args['list' .. n] or ''
tracking = tracking .. '<span style="color:blue">' .. k .. '</span>; '
end
elseif (k:match('^group[0-9][0-9]*$')
Line 81 ⟶ 83:
image = args['image' .. n],
imageleft = args['imageleft' .. n],
listpadding = args['listpadding']})
tracking = tracking .. '<span style="color:red">' .. k .. '</span>; '
end
end
|