You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We will replace the body of fn with fmt-fn-body, which will contain the footnote body with autonumbering of footnotes, instead of expecting HTML and PDF to insert that autonumbering in the footnote body. This is to deal with the fact that JIS inserts the word "footnote" before footnote text.
It is not HTML and PDF's job to insert the word "Footnote" before the "a)" and a tab after it in the footnote body, it is Presentation XML's. So the Presentation XML will change to:
<td align="center">
Balilla
<fn reference="a)" id="{ADDED ID}">
<p id="_">Parboiled rice.</p>
<!-- ignore all content of fn but fmt-fn-body -->
<fmt-fn-body>
<p id="{new GUID}">
<span class="fmt-caption-label">
<!-- most flavours do not add "Footnote" -->
<span class="fmt-element-name">Footnote</span>
<semx element="autonum" source="{ADDED ID}">a</semx>
<span class="fmt-autonum-delim">)</span>
</span>
<span class-"fmt-caption-delim"><tab/></span>
Parboiled rice.
</p>
</fmt-fn-body>
</fn>
</td>
Added bonus: the ADDED ID GUID allows more straightforward implementation of backlinks from footnote text.
The text was updated successfully, but these errors were encountered:
Child of #610:
We will replace the body of
fn
withfmt-fn-body
, which will contain the footnote body with autonumbering of footnotes, instead of expecting HTML and PDF to insert that autonumbering in the footnote body. This is to deal with the fact that JIS inserts the word "footnote" before footnote text.So currently inside a table:
Renders in JIS as:
in the table, and
It is not HTML and PDF's job to insert the word "Footnote" before the "a)" and a tab after it in the footnote body, it is Presentation XML's. So the Presentation XML will change to:
Added bonus: the ADDED ID GUID allows more straightforward implementation of backlinks from footnote text.
The text was updated successfully, but these errors were encountered: