From d66b046c8a961dcb6ad08fa7ef5eea1864db4f9c Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 11 Mar 2017 23:24:14 +0100 Subject: Markdown writer: fixed bugs in simple/multiline list output. * Previously we got overlong lists with `--wrap=none`. This is fixed. * Previously a multiline list could become a simple list (and would always become one with `--wrap=none`). Closes #3384. --- test/command/3384.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/command/3384.md (limited to 'test/command') diff --git a/test/command/3384.md b/test/command/3384.md new file mode 100644 index 000000000..94c2bd0e9 --- /dev/null +++ b/test/command/3384.md @@ -0,0 +1,15 @@ +``` +% pandoc -t markdown --wrap=none + ----- ------------------------------------------------ + foo bar + + foo this is a long + line of text + ----- ------------------------------------------------ +^D + ------ ------------------------------------------------ + foo bar + + foo this is a long line of text + ------ ------------------------------------------------ +``` -- cgit v1.2.3