-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
bugSomething isn't workingSomething isn't working
Description
The coloring for the rows might be different if they are stripped:
| Description | HTML-in-markdown | Rendered HTML | ||||||
|---|---|---|---|---|---|---|---|---|
No <thead>,
<tbody>
nor <tfoot>
|
<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Cell 1.1</td>
<td>Cell 1.2</td>
</tr>
<tr>
<td>Cell 2.1</td>
<td>Cell 2.2</td>
</tr>
</table> |
|
||||||
With <thead>
and <tbody>
only
|
<table>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cell 1.1</td>
<td>Cell 1.2</td>
</tr>
<tr>
<td>Cell 2.1</td>
<td>Cell 2.2</td>
</tr>
</tbody>
</table> |
|
||||||
With
<thead>,
<tbody>
and <tfoot>
|
<table>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cell 1.1</td>
<td>Cell 1.2</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Cell 2.1</td>
<td>Cell 2.2</td>
</tr>
</tfoot>
</table> |
|
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working