View Single Post
Old 07-25-2023, 04:47 PM   #15
BeckyEbook
Guru
BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.
 
BeckyEbook's Avatar
 
Posts: 876
Karma: 3501146
Join Date: Jan 2017
Location: Poland
Device: Various
@DiapDealer.

Surely this is the situation:

Code:
  <h1>Chapter 1</h1>
  <p>Blah, blah, blah</p>
  <h2>Subchapter A</h2>
  <p>Blah, blah, blah</p>
  <h2>Subchapter B</h2>
  <p>Blah, blah, blah</p>
  <h2>Subchapter C</h2>
  <p>Blah, blah, blah</p>
After creating TOC/NCX:

Code:
  <h1>Chapter 1</h1>
  <p>Blah, blah, blah</p>
  <h2 id="sigil_toc_id_1">Subchapter A</h2>
  <p>Blah, blah, blah</p>
  <h2 id="sigil_toc_id_2">Subchapter B</h2>
  <p>Blah, blah, blah</p>
  <h2 id="sigil_toc_id_3">Subchapter C</h2>
  <p>Blah, blah, blah</p>
Identifiers are added only to those headers that are in the same file. And that's a very good thing.
BeckyEbook is offline   Reply With Quote