Module:Delink: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
Content added Content deleted
(try removing slashes from newlin-matching pattern)
(fix pattern match)
Line 157: Line 157:
if not (args.whitespace == "no") then
if not (args.whitespace == "no") then
text = mw.ustring.gsub(text, "[ \t]+", " ") -- Remove extra tabs and spaces.
text = mw.ustring.gsub(text, "[ \t]+", " ") -- Remove extra tabs and spaces.
text = mw.ustring.gsub(text, "[^\n](\n)[^\n]", "") -- Remove single new lines (but not double new lines).
text = mw.ustring.gsub(text, "([^\n])(\n)([^\n])", "%1%3") -- Remove single new lines (but not double new lines).
end
end
return text
return text