Quote:
Originally Posted by theducks
Actually, thinking this over a bit, you really should include a class="justincase"  so you can adjust the style the specific H2 (chapter heads) if needed.
A simple REGEX
S: <p class="calibre_0">(Chapter \d+)</p>
R: <h2 class="justincase">\1</h2>
|
This is what I would do.
S: <p class="calibre_0">(.*)</p>
R: <h2>\1</h2>
No need for the class. Just style h2 as wanted.