mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 05:35:38 +00:00
...table has fallen back to raw HTML, which will then contain a `<caption>` tag. Closes #10094.
48 lines
754 B
Markdown
48 lines
754 B
Markdown
```
|
|
% 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>
|
|
|
|
```
|