Quote:
Originally Posted by davidfor
...I use:
Code:
([\w,—])</p>\s*<p\s*[^>]*?>([\w])
with the replace of:
It doesn't catch everything (it probably should have the other types of dash) but it catches most.
|
It might be a dependency of the editor, but in Calibre's you'd have to escape the "/" in "</p>". So, it would be:
Code:
([\w,—])<\/p>\s*<p\s*[^>]*?>([\w])
BTW: it's an amazing thing, but I came here looking for the exact same thing just now.