ObeoNetwork / M2Doc

The M2Doc technology enables the generation of Office Open XML documents from models.
http://obeonetwork.github.io/M2Doc/
Eclipse Public License 2.0
38 stars 22 forks source link

Add support for thead tag in HTML table. #484

Closed ylussaud closed 1 year ago

ylussaud commented 1 year ago

The heads are not inserted on the following example:

    <table> 
     <thead> 
      <tr> 
       <th>Hearder 1</th> 
       <th>Hearder 2</th> 
       <th>Hearder 3</th> 
       <th>Hearder 4</th> 
       <th>Hearder 5</th> 
      </tr> 
     </thead> 
     <tbody> 
     <tr> 
       <td><p class="tableblock">cell 2.1</p></td> 
       <td><p class="tableblock">cell 2.1</p></td> 
       <td><p class="tableblock">cell 2.3</p></td> 
       <td><p class="tableblock">cell 2.4</p></td> 
       <td><p class="tableblock">cell 2.5</p></td> 
      </tr> 
    </tbody> 
  </table>