View Single Post
Old 08-08-2012, 06:10 AM   #16
mhenry07
Junior Member
mhenry07 began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Aug 2012
Device: Kindle
This is old and hopefully it's been resolved by now, but for anyone who's curious, it appears the quotation marks for attributes in the .ncx file are angle quotes when they should be straight quotes.

For example:

Invalid quotation marks:
Code:
<navPoint playOrder=”1?>
<navLabel>
<text>1. Objective: Becoming a Millionaire</text>
</navLabel>
<content src=”StinkinThinking.html#start”/>
</navPoint>
Corrected quotation marks:
Code:
<navPoint playOrder="1">
<navLabel>
<text>1. Objective: Becoming a Millionaire</text>
</navLabel>
<content src="StinkinThinking.html#start"/>
</navPoint>
mhenry07 is offline   Reply With Quote