Quote:
Originally Posted by skb
How do I search and replace for something like this in the HTML?
Code:
<br class="calibre4" />
<br class="calibre4" />
That is, two tags that appear across line breaks.
|
A regex like this would work:
Search: <br[^>]+>\s+<br[^>]+>
Replace: </p> <p> (or whatever you want)