pandoc/test/command/2834.md
John MacFarlane bcfb77e2ab Markdown writer: Avoid spurious blanklines at end of document...
after tables and list, for example.
2017-03-08 12:47:39 +01:00

29 lines
844 B
Markdown

Nested grid tables.
```
% pandoc -f html -t markdown --columns=72
<table>
<tr>
<td>
<table>
<tr>
<td>
<table>
<tr>
<td>some text</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
^D
+-----------------------------------------------------------------------+
| +------------------------------------------------------------------+ |
| | ----------- | |
| | some text | |
| | ----------- | |
| +------------------------------------------------------------------+ |
+-----------------------------------------------------------------------+
```