Quote:
Originally Posted by Karellen
Yes, I agree. You need to spend 10min or so figuring out what the classes are doing, especially when they are nested. You might also be removing blockquotes, centering, right aligned, and lots of other styling.
I have never used a plugin to fix these problems. A few well placed regexes can either remove the code or find&replace the convoluted code with your own simpler classes.
In your example a simple regex would have fixed that
Find... <span class="text_14">(.*?)</span>
Replace... \1
Then look at what is leftover and figure out what it does and either leave it, replace it or remove it.
|
But with Diaps Editing Toolbag you just delete all spans with the class text_14 if you don't want text_14. It's a lot easier and safer. If you have nested spans, the regex given won't work.