mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-11 03:47:20 +00:00
5db6c52fbd
Closes #11455.
272 B
272 B
% pandoc -f textile -t html
| foo | bar |
| table
* item 1
* item 2
* item 3 | xxx |
^D
<table>
<tbody>
<tr>
<td>foo</td>
<td>bar</td>
</tr>
<tr>
<td><p>table</p>
<ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ul></td>
<td>xxx</td>
</tr>
</tbody>
</table>