diff --git a/www/contribute/semantics.php b/www/contribute/semantics.php index 5bafcf23..b20c5218 100644 --- a/www/contribute/semantics.php +++ b/www/contribute/semantics.php @@ -287,7 +287,7 @@ font-weight: normal;
Endnotes must be numbers that are sequential throughout the entire text. Since many books just used “*” to denote a footnote, when converting to endnotes we have to assign those a number.
In the body text, you refer to an endnote using this pattern:
-<p>This is some text followed by a reference to an endnote.<a href="../text/endnotes.xhtml#note-1" id="noteref-1" epub:type="noteref">1</a></p>
+ <p>This is some text followed by a reference to an endnote.<a href="endnotes.xhtml#note-1" id="noteref-1" epub:type="noteref">1</a></p>
The id
attribute is always “noteref-N” where N is the number of the endnote.
The epub:type
attribute is set to “noteref”.
If an endnote contains a citation offset with a dash (for example, “—Ed.”), separate the citation from the text with a single space and enclose it in the <cite>
tag:
<li id="note-1" epub:type="rearnote">
-<p>Here’s an endnote. <cite>—<abbr class="eoc">Ed.</abbr></cite> <a href="../text/chapter-1.xhtml#note-1" epub:type="se:referrer">↩</a></p>
+<p>Here’s an endnote. <cite>—<abbr class="eoc">Ed.</abbr></cite> <a href="chapter-1.xhtml#note-1" epub:type="se:referrer">↩</a></p>
</li>