[epub V3] epub:type note missing

Request new features or suggest modifications to existing features of Atlantis.
Post Reply
ElMaco
Posts: 3
Joined: Thu May 21, 2026 7:15 am

[epub V3] epub:type note missing

Post by ElMaco »

Is it possible to put in the markouts of the footnote of epub V3 :
- epub:type="noteref" in the call
(<a id="a0" href="notes.html#a3" epub:type="noteref"> <span class="t5">{1}</span>)
- epub:type="footnote" in the note
(<p id="a3" class="p11" epub:type="footnote"> <a href="004.html#a0"><span class="t5">{1}</span></a> <span class="t8"> This is a note call #1]</span></p>)

Why ? Because some readers like koreader use this markouts to put the note into the bottom of the page like a real book and doesn't use the html link .
thanks for all. :D
User avatar
admin
Site Admin
Posts: 3013
Joined: Wed Jun 05, 2002 10:48 pm
Contact:

Re: [epub V3] epub:type note missing

Post by admin »

OK, this will be implemented in the next release of Atlantis. Thanks.
User avatar
admin
Site Admin
Posts: 3013
Joined: Wed Jun 05, 2002 10:48 pm
Contact:

Re: [epub V3] epub:type note missing

Post by admin »

The next release of Atlantis will generate note references and notes in EPUB in the following way:


EPUB 2.0:

A note reference in "nnn.html":

<a href="notes.html#aNNN"> ... </a>

A note in “notes.html”:

<p><a id="aNNN"></a> ... </p>
<p> ... </p>

<p> ... </p>


EPUB 3.0:

A note reference in "nnn.html":

<a href="notes.html#aNNN" epub:type="noteref"> ... </a>

A note in “notes.html”:

<aside id="aNNN" epub:type="footnote">
<p> ... </p>

<p> ... </p>
</aside>


In the example above, the note contains multiple paragraphs.
Post Reply