Hi

Thanks ... you made my day ... even if haven't asked for displaying 2 tables (or maybe even more) at the same time with all the Datatables magic glue in ORG syntax this was exactly what I would have asked next ... Yeeeeah your solution (even with the id attribute) works perfectly.

But back to the main question ... is it somehow possible to generate the <tfoot> footer elements (I just realized that my example was actually wrong, I used <thead> for <tfoot>... it should look like the following

#+attr_html: :id example :class cell-border hover compact :width 100%
| Name        | Position         | Office        |
|-------------+------------------+---------------|
| Tiger Nixon | System Architect | Edinburgh     |
| Ashton Cox  | Technical Author | San Francisco |
|-------------+------------------+---------------|
| Name        | Position         | Office        |

    =====>

    
<table id="example" class="cell-border hover compact" width="100%">

<thead>
    <tr>
      <th>Name</th>
      <th>Position</th>
      <th>Office</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>Tiger Nixon</td>
      <td>System Architect</td>
      <td>Edinburgh</td>
    </tr>
    <tr>
      <td>Ashton Cox</td>
      <td>Technical Author</td>
      <td>San Francisco</td>
    </tr>
  </tbody>

  <tfoot>
    <tr>
      <th>Name</th>
      <th>Position</th>
      <th>Office</th>
    </tr>
  </tfoot>

</table>

Thx again ... Volker