View Single Post
Old 03-19-2013, 07:13 AM   #83
steppe
Enthusiast
steppe began at the beginning.
 
Posts: 32
Karma: 10
Join Date: Jun 2012
Device: Kindle 4 NT (broke), Kindle Paperwhite, Kindle 2
Your time would be greatly appreciated. I have a last-minute wish : so that the internal links are Kindle-proof it would be best to code the anchors like this:

either:
Code:
<h1 id="anchor1">Chapter One</h1>
or:
Code:
<a name="anchor1"></a><br /><h1>Chapter One</h1>
if an anchor precedes a heading tag. The following code will work badly on older Kindle devices:
Code:
<a name="anchor1"></a><h1>Chapter One</h1>
(The formatting of the heading will change to regular text when a Kindle user follows that link.) If an anchor is within regular text, then it doesn't matter how it is coded.
steppe is offline   Reply With Quote