pandoc/test/command/3337.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

13 lines
143 B
Markdown

```
% pandoc -f html -t markdown
<table>
<tr><td>a</td></tr>
<tr><td>1</td><td>2</td></tr>
</table>
^D
--- ---
a
1 2
--- ---
```