I hope someone can see what's wrong here.
I have an ebook with a lot of footnotes. Many of the footnotes are several paragraphs long. I've tried a lot of variations to the HTML, but no matter what I do, my Kindle Paperwhite will only display the first paragraph of each footnote in the popup. Currently, it's set up exactly like the example on on the Amazon Guidelines page (https://kdp.amazon.com/en_US/help/to...4DRT75GWWAGBTU).
If I tap "Go to footnote" I can see the whole thing, but that's a very subpar solution. Not only is it inconvenient, but it's not always clear if the footnote is multiple paragraphs.
In my Googling, not only have I failed to find a solution. I've failed to even find anyone else having this problem. This post (https://www.mobileread.com/forums/sh...d.php?t=331142) mentions issues with formatting of the multiple paragraphs that are displayed in the popup, but there doesn't seem to be any problem seeing all the paragraphs.
Below is the basic format of my HTML. Does anyone see a problem with this? Am I doing something wrong? Is there some trick to this that I'm missing? I would really appreciate any help that you all could give me.
In the main text of the book (book.html), I have links like this:
<p>The text<a id="1" epub:type="noteref" href="#foot1">1</a></p>
Then, in the footnotes file, I have another link, as well as aside tags:
<aside id="foot1" epub:type="footnote">
<p><a epub:type="noteref" href="#1">1</a>First paragraph of footnote</p>
<p>Second paragraph of footnote</p>
</aside>
I have an ebook with a lot of footnotes. Many of the footnotes are several paragraphs long. I've tried a lot of variations to the HTML, but no matter what I do, my Kindle Paperwhite will only display the first paragraph of each footnote in the popup. Currently, it's set up exactly like the example on on the Amazon Guidelines page (https://kdp.amazon.com/en_US/help/to...4DRT75GWWAGBTU).
If I tap "Go to footnote" I can see the whole thing, but that's a very subpar solution. Not only is it inconvenient, but it's not always clear if the footnote is multiple paragraphs.
In my Googling, not only have I failed to find a solution. I've failed to even find anyone else having this problem. This post (https://www.mobileread.com/forums/sh...d.php?t=331142) mentions issues with formatting of the multiple paragraphs that are displayed in the popup, but there doesn't seem to be any problem seeing all the paragraphs.
Below is the basic format of my HTML. Does anyone see a problem with this? Am I doing something wrong? Is there some trick to this that I'm missing? I would really appreciate any help that you all could give me.
In the main text of the book (book.html), I have links like this:
<p>The text<a id="1" epub:type="noteref" href="#foot1">1</a></p>
Then, in the footnotes file, I have another link, as well as aside tags:
<aside id="foot1" epub:type="footnote">
<p><a epub:type="noteref" href="#1">1</a>First paragraph of footnote</p>
<p>Second paragraph of footnote</p>
</aside>