View Single Post
Old 12-05-2011, 01:35 PM   #2
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 28,603
Karma: 204624552
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
It's just a collection of links to different anchor points in the (x)html document(s).
Code:
<h3>Contents</h3>

<a href="../Text/book.html#chap001">Chapter One</a>
<a href="../Text/book.html#chap002">Chapter Two</a>
<a href="../Text/acknowledgements.html">Acknowledgements</a>
.
.
.
etc.
And the anchors in the document (if you don't have separate documents for each TOC entry) would be something along the lines of:
Code:
<a id="chap001"></a>
or
Code:
<h3 id="chap002">Chapter Two</h3>
DiapDealer is online now   Reply With Quote