Is it possible to let an abusefilter replace unwanted text, like deprecated HTML tags and possibly other lint errors? My goal was to silently replace <br /> with <br> (just an example!!), without annoying them. I tried this:
new_wikitext = str_replace_regexp(new_wikitext,"\<\/?br\/\>","<br>")
but that's no good. Can it be done, and if so, how? - ~~~~