Quote:
Originally Posted by chaot
Or do you see/know something that I overlooked?
|
Something to be careful of with your regex is that you might end up replacing consecutive non-breaking-spaces with a plain space. That might be important if nbsps have been used to create vertical whitespace scenebreaks. E.g.
Before: <p>*nbsp**nbsp*</p>
After: <p>*plainspace*</p>
The 'Before' paragraph will look like a blank line. The 'After' will be completely invisible.