View Single Post
Old 02-16-2025, 07:21 AM   #2
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,755
Karma: 24032915
Join Date: Dec 2010
Device: Kindle PW2
You most likely didn't nest the <table> tag correctly. Have a look at the attached sample file. Here's the relevant code:

Spoiler:
Code:
<body>
  <section epub:type="endnotes" role="doc-endnotes">
    <h1>Endnotes</h1>

    <aside id="ftn1" epub:type="endnote">
      <p class="note">Table 1</p>
      <table>
        <thead>
          <tr>
            <th>Header</th>
            <th>Header</th>
            <th>Header</th>
          </tr>
        </thead>

        <tbody>
          <tr>
            <td>Cell</td>
            <td>Cell</td>
            <td>Cell</td>
          </tr>

          <!-- more rows -->

        </tbody>
      </table>
    </aside>
  </section>
</body>
Attached Files
File Type: epub footnote_table_test_epub3.epub (3.4 KB, 234 views)
Doitsu is offline   Reply With Quote