Quote:
Originally Posted by DNSB
The toc.xhtml file should consists of list(s) using <li> tags wrapped with <ol> tags and <nav> tags. Makes nested TOCs and multiple TOCs much easier than that old toc.ncx format.
|
Interesting. That's what the nav.html looks like:
Code:
<nav epub:type="toc" id="toc">
<h1>Inhalt</h1>
<ol>
<li><a href="chapter01.html#ch1"><em>1 König</em></a></li>
<li><a href="chapter02.html#ch2"><em>2 Horse Shoe Point</em></a></li>
<li><a href="chapter03.html#ch3"><em>3 Rhein</em></a></li>
etc. etc. ...
</ol>
</nav>