in reply to Custom Word Filters
you could allways add something like this to your Free Nodelet (assuming you enable it in your Nodelet settings, and assuming your browser is forgiving about script blocks in the body)....
<script> var b = document.getElementsByTagName("body").item(0); b.innerHTML = b.innerHTML.replace( /Ja()va|Ru()by|Pas()cal/ig, "PROFANITY" ); </script>
Make sure you are very carefull with your regex, or you could make the site entirely unusable, to the point that you might not even be able to use the User Settings page to undo it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Custom Word Filters
by dorward (Curate) on May 19, 2005 at 08:58 UTC | |
|
Re^2: Custom Word Filters
by mrborisguy (Hermit) on May 19, 2005 at 12:16 UTC |