Barrym
I use the REGEX to find the chapter number/title string
your case
<p class="MsoNormal">Chapter One</p>
Code:
<p class="MsoNormal">(Chapter .+?)</p>
Code:
<h3 class="chapno">\1</h3>
(where
chapno is my
house stylesheet entry for chapter numbering)
Create TOC from major Headings will use those H3's
My general rules
h1 for the odd times the Books title does not land on a h2 or h3 (I don't usually want a fully nested TOC at the books title level)
h2 for Parts/Books/Stories(anthologies)
h3 for Chapters (or on same level)