View Single Post
Old 09-22-2014, 08:40 AM   #6
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 45,462
Karma: 27757440
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
Looking at the markup, I'd guess it is caused by your putting the <sup> tags inside the <a> tags instead of outside them.

You have:

<a class="calibre5" href="part0000.html#end1" id="endref1"><sup class="calibre6">1</sup></a>

change that to
<sup class="calibre6"><a class="calibre5" href="part0000.html#end1" id="endref1">1</a></sup>

And you should be fine.

Presumably the Kindle software cannot handle the former.
kovidgoyal is offline   Reply With Quote