Content deleted Content added
No edit summary Tag: Reverted |
reset |
||
Line 117:
end
for arg_name, arg_value in pairs(args) do
local tf_match = mw.ustring.match(arg_name,
local note_match = mw.ustring.match(arg_name,
if tf_match and yesno(arg_value, true) then
table.insert(task_forces, tf_match)
Line 124:
table.insert(notes, note_match)
else
▲ local tf, cat = mw.ustring.match(arg_name, '^tf (%d+) cat (%d+)$')
if tf and yesno(arg_value, true) then
if not taskforce_categories[tf] then -- initialise table
|