Content deleted Content added
test: debug |
fix: broken replacement - attempt 6 |
||
Line 12:
local as_fold_function;
local escape_replacement;
local unstrip_and_strip_nowiki_tags;
-- exposed: categorizes content and display them
Line 19:
local args = build_args(frame)
local folder = as_fold_function(
local keys = build_keys(args)
local values = build_values(
local result = ""
Line 38:
end
return result
end
Line 65:
if arg_k_trim:match("^table_") then
local key = arg_k_trim:gsub("table_", "", 1)
result[key] = as_key_content_function(
end
end
Line 155:
end
return mw.text.unstripNoWiki(text):gsub("<nowiki>", ""):gsub("</nowiki>", "")
end
|