showdown/test/features/tables/gh-style-tables.html
Estevão Soares dos Santos f58f014bc3 fix(tables): fix tables to match github's md spec
Now Leading and trailing pipes (|) are optional in tables

Closes #230
2016-01-25 05:24:54 +00:00

25 lines
376 B
HTML

<table>
<thead>
<tr>
<th>First Header</th>
<th>Second Header</th>
<th>Third Header</th>
</tr>
</thead>
<tbody>
<tr>
<td>Content Cell</td>
<td>Content Cell</td>
<td>C</td>
</tr>
<tr>
<td>Content Cell</td>
<td>Content Cell</td>
<td>C</td>
</tr>
</tbody>
</table>