I've got a nicely structured EPUB file, and trying to generate a mobi file using KindleGen... The EPUB is filled with footnotes/annotations, which are internal links/anchors. All is well formatted, good HTML ... but the Kindlegen-created MOBI file chokes:
- Kindle Fire - all is well
- Kindle - links don't work
- Kindle DX - links don't work
- Kindle iPhone - links work in Previewer, but not on my iPhone
- Kindle iPad - links don't work
Converting with Calibre, there are no problems with links.
The code we're using is the following:
The NOTE link, from inside the text:
<a class="footnote" href="#footnote-3" id="return-footnote-3" title="Paul Johnson: Marks’s
comments in this paragraph are excellent."><sup class="footnote">[3. Paul Johnson]</sup>
</a></p>
and the code for footnote back to note is:
<p id="footnote-3"><a class="return-footnote" href="#return-footnote-3">3. <cite>Paul Johnson:
</cite> Marks’s comments in this paragraph are excellent.</a></p>
I tried pulling the anchor tags out, so:
<a id="return-footnote-3"></a> <a class="footnote" href="#footnote-3" title="Paul Johnson:
Marks’s comments in this paragraph are excellent."><sup class="footnote">[3. Paul Johnson]
</sup></a></p>
But that didn't work.
Any thoughts? Suggestions?