Module:category tree/lang/wasc: Difference between revisions
No edit summary |
|||
| Line 1: | Line 1: | ||
local labels = {} | |||
local handlers = {} | |||
table.insert(handlers, function(data) | table.insert(handlers, function(data) | ||
local suffix, pos = data.label:match("^(%*%S+) (.+)$") | local suffix, pos = data.label:match("^(%*%S+) (.+)$") | ||
| Line 19: | Line 22: | ||
} | } | ||
end) | end) | ||
return {LABELS = labels, HANDLERS = handlers} | |||