Quote:
Originally Posted by Bigo2
Hi DoctorOhh - it does not work...
When checking this epub in Sigil, I have found that after every paragraph instead </p>, there is </p><br class="calibre1" />
So I used find and replace and after some time I was able to fix it all. I know I could've use Repace All, but I wanted to make sure not loosing something I did not want.
Thanks
|
That construct is a forced break (after a paragraph ends

. I thought BR's had to be inside a block element?)
Code:
search: </p>\s*<br class="calibre1" />\s+(<p class="value_here">)
replace: </p> \1
You might get away with just removing just a BR if it follows a </p>
(?</p>\s*)<br class="calibre1" />