pandoc 1.13.1 adds a blank line to the end of text that does not already end in a blank line, i.e.
$ echo -ne "some text\n"
some text
$ echo -ne "some text\n" | pandoc --to markdown
some text
$
$ echo -ne "some text\n\n" | pandoc --to markdown
some text
$
Compared to the behaviour in e.g. 1.11.1, which is to strip all blank lines:
$ echo -ne "some text\n" | pandoc-1.11.1 --to markdown
some text
$
$ echo "some text\n\n" | pandoc-1.11.1 --to markdown
some text
$
I would like pandoc to respect my input and not add or remove blank lines.
pandoc 1.13.1 adds a blank line to the end of text that does not already end in a blank line, i.e.
Compared to the behaviour in e.g. 1.11.1, which is to strip all blank lines:
I would like pandoc to respect my input and not add or remove blank lines.