Hi,
I get the following errors from EPUB-Checker:
Undefined property: 'endnotes'
Undefined property: 'endnote'
What does this mean?
I'm using the following HTML (as an example) for EPUB 3 based on suggestions from others:
<aside epub:type="endnotes">
<h2>Notes</h2>
<ul class="endnotes">
<li id="footnote-041" epub:type="endnote" class="fn-txt"><a class="_idFootnoteAnchor" href="page-14.xhtml#footnote-041-backlink">37</a>footnote text here. </li>
<li id="footnote-040" epub:type="endnote" class="fn-txt"><a class="_idFootnoteAnchor" href="page-14.xhtml#footnote-040-backlink">38</a> footnote text here.</li>
</ul>
</aside>
How do I define this so it works?
Thanks.