diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-03-11 23:24:14 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-03-11 23:24:14 +0100 |
commit | d66b046c8a961dcb6ad08fa7ef5eea1864db4f9c (patch) | |
tree | c7ae4464b0a6399f27c229a07c4b5b67fb0a41d4 /test/command/3384.md | |
parent | be733385c9457a006da2b5d92fed0077401c3d1c (diff) | |
download | pandoc-d66b046c8a961dcb6ad08fa7ef5eea1864db4f9c.tar.gz |
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.
Diffstat (limited to 'test/command/3384.md')
-rw-r--r-- | test/command/3384.md | 15 |
1 files changed, 15 insertions, 0 deletions
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 + ------ ------------------------------------------------ +``` |