mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-10 19:37:12 +00:00
1a56865705
...table has fallen back to raw HTML, which will then contain a `<caption>` tag. Closes #10094.
754 B
754 B
% pandoc -f rst -t markdown_strict
.. table:: Test Table
================================== ====
Functions for tests 1
================================== ====
a yes
b
c
d yes
e
================================== ====
^D
<table>
<caption>Test Table</caption>
<thead>
<tr>
<th>Functions for tests</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>a</td>
<td>yes</td>
</tr>
<tr>
<td>b</td>
<td></td>
</tr>
<tr>
<td>c</td>
<td></td>
</tr>
<tr>
<td>d</td>
<td>yes</td>
</tr>
<tr>
<td>e</td>
<td></td>
</tr>
</tbody>
</table>