Quote:
Originally Posted by KevinH
Would you please provide small snippets of code showing the links from the text into the footnotes and the footnote format and return link.
Why would a section tag vs a div tag matter?
|
Sure, thanks for your answer, Kevin. ID2024 exports the note reference in the text as:
<span class="noteref"><span><a id="footnote-01-backlink" class="_idFootnoteLink" role="doc-noteref" epub:type="noteref" href="TITLE.xhtml#footnote-01">1</a></span></span>
And it used to be:
<span class="noteref"><span><a id="footnote-01-backlink" class="_idFootnoteLink" role="doc-noteref" epub:type="noteref" href="TITLE.xhtml#footnote-01">1</a></span></span>
The footnotes block (after each chapter) is now exported as a numbered list:
<section class="_idFootnotes">
<ol class="_idFootAndEndNoteOLAttrs">
<li id="footnote-01" class="_idFootnote"><p class="note"><a class="_idFootnoteAnchor" role="doc-backlink" href="TITLE.xhtml#footnote-01-backlink">1</a> Text of the note</p></li>
</ol>
</section>
Thanks.