You would need to edit the ePub and adjust the tag <a> location.
Example:
Change:
<p>This paragraph has a footnote <a href=“notes.html#ref1”>1</a>.</p>
To:
<p>This paragraph has a <a href=“notes.html#ref1”>footnote 1</a>.</p>
You can use a regex to do this fairly quickly.
Last edited by Turtle91; 08-08-2021 at 07:48 AM.
|