tables: caption tag
Status: Beta
Brought to you by:
milianw
When table contains <caption> tag, table is not converted
Try this code:
<table summary="Table summary">
<caption>This is table caption</caption>
<thead>
<tr><th>header 1</th><th>header 2</th></tr>
</thead>
<tbody>
<tr><td>data 11</td><td>data 12</td></tr>
<tr><td>data 21</td><td>data 22</td></tr>
</tbody>
</table>