Module:Delink: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
Content added Content deleted
(whitespace matching for urls should be working this time, hopefully)
(remove extra whitespace)
Line 134: Line 134:
text = mw.ustring.sub(text, 2, -1)
text = mw.ustring.sub(text, 2, -1)
end
end
-- Remove extra whitespace.
result = mw.ustring.gsub(result, "%s+", " ")
return result
return result
end
end