Content deleted Content added
fix: errors (how did we do that) |
fix: broken replacement - attempt 2 |
||
Line 12:
local as_fold_function;
local escape_replacement;
local
-- exposed: categorizes content and display them
Line 126:
as_key_content_function = function(text)
local function func(content)
return decode_magic_text(text):gsub
end
return func
Line 135:
as_value_content_function = function(text)
local function func(category)
return decode_magic_text(text):gsub
end
return func
Line 145:
local function func(left, right)
-- some improvements could be made here
return decode_magic_text(text):gsub
end
return func
Line 155:
end
-- decode text with magic words
-- experimental
return mw.text
end
|