"Copyright" page in .mobi toc.ncx
I'm wondering if this is a known issue, but couldn't find any documentation in regards to it:
-A page with the title "Copyright" does not display as an entry in the .ncx TOC in .mobi files (or does appear inconsistently).
-What remedies the situation is manually editing the toc.ncx file, changing:
<navPoint id="navPoint-9" playOrder="9">
<navLabel>
<text>Copyright</text>
</navLabel>
<content src="Text/copyright.xhtml"/>
</navPoint>
To:
<navPoint id="navPoint-9" playOrder="9">
<navLabel>
<text>Copyright </text>
</navLabel>
<content src="Text/copyright.xhtml"/>
</navPoint>
Nothing else seems to work, including using various top level heading code in the .xhtml file, like:
<h1 title="Copyright"></h1>
<h1>Copyright</h1>
<h1 title="Copyright">Copyright</h1>
The bizarre thing is that this affects only pages titled "Copyright", nothing else. Is anyone else aware of this issue/can it be resolved/is it worth fretting about?
|