View Single Post
Old 10-20-2021, 02:09 PM   #3
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 46,445
Karma: 169098492
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
An epub3 navigation document is a list. See EPUB Navigation Document Definition though it is not defined as a numbered list.

Spoiler:
Code:
<body>
  <nav epub:type="landmarks" hidden="" id="landmarks"><h2>Guide</h2>

  <ol>
    <li><a epub:type="bodymatter" href="part0005.xhtml">Beginning</a></li>

    <li><a epub:type="toc" href="part0002.xhtml">Contents</a></li>

    <li><a epub:type="cover" href="cover.xhtml">Cover</a></li>
  </ol></nav>

  <nav epub:type="toc"><h1>Table of contents</h1>

  <ol>
    <li><a href="part0000.xhtml">Title Page</a></li>

    <li><a href="part0001.xhtml">Copyright</a></li>

    <li><a href="part0002.xhtml">Contents</a></li>

    <li><a href="part0003.xhtml">Dedication</a></li>

    <li><a href="part0004.xhtml">Epigraph</a></li>

    <li><a href="part0005.xhtml">Chapter 1</a></li>

    <li><a href="part0006.xhtml">Chapter 2</a></li>

    <li><a href="part0007.xhtml">Chapter 3</a></li>

    <li><a href="part0008.xhtml">Chapter 4</a></li>

    <li><a href="part0009.xhtml">Chapter 5</a></li>

    <li><a href="part0010.xhtml">Chapter 6</a></li>

    <li><a href="part0011.xhtml">Chapter 7</a></li>

...

    <li><a href="part0039.xhtml">Chapter 35</a></li>

    <li><a href="part0040.xhtml">Chapter 36</a></li>

    <li><a href="part0041.xhtml">Chapter 37</a></li>

    <li><a href="part0042.xhtml">Chapter 38</a></li>

    <li><a href="part0043.xhtml">Alien Scourge</a></li>

    <li><a href="part0044.xhtml">Author Notes - </a></li>

    <li><a href="part0045.xhtml">Books By Ann Nonymous</a></li>

    <li><a href="part0046.xhtml">Connect with Ann Nonymous</a></li>
  </ol></nav>
</body>
DNSB is offline   Reply With Quote