37 lines
576 B
Markdown
37 lines
576 B
Markdown
|
```
|
||
|
% pandoc -f html -t rst
|
||
|
<html>
|
||
|
<body>
|
||
|
<ul>
|
||
|
<li>A list of stuff with a table inside
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>First</th><th>Second</th><th>Third</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<td>First</td>
|
||
|
<td>Second</td>
|
||
|
<td>Third</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</li>
|
||
|
<li>Another list item</li>
|
||
|
</ul>
|
||
|
</body>
|
||
|
</html>
|
||
|
^D
|
||
|
- A list of stuff with a table inside
|
||
|
|
||
|
===== ====== =====
|
||
|
First Second Third
|
||
|
===== ====== =====
|
||
|
First Second Third
|
||
|
===== ====== =====
|
||
|
|
||
|
- Another list item
|
||
|
```
|