Hello ,
Can you help please , i need to link html footnotes in docx
i tried to add links with html like this
PHP Code:
<a id="w11"></a>
<a href="#m1">
<sup>[1]</sup>
</a>
<a id="w22"></a>
<a href="#m2">
<sup>[2]</sup>
</a>
# The footnote content:
<p class="note"><a id="m1"></a>
<a href="#w11">[1]</a> foot note 1 </p>
<p class="note"><a id="m2"></a>
<a href="#w22">[2]</a> footnote2 </p>
and i converted to docx in terminal
Code:
ebook-convert html.html html2.docx --docx-no-toc
but it's not linked as footnotes
how can i do the trick please ?