Content deleted Content added
fix: un-preprocessed template |
fix: escape |
||
Line 161:
unstrip_and_strip_nowiki_tags = function(text)
local result = mw.text.unstripNoWiki(text
:gsub("<nowiki>", "")
:gsub("</nowiki>", "")
:gsub("<", "<") -- needs to be escaped in the source
:gsub(">", ">")
:gsub(""", '"')
return result
end
|