aboutsummaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-01-02 10:31:13 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2019-01-02 10:31:13 -0800
commitea8af33dab2ba5abba12c61ada7e62f9752cb973 (patch)
tree836cc2ca5ad891689d39c999225e5d978e1344ce /test/command
parent1bbbd5fad349624148779dbc08a9b00332afc1f4 (diff)
downloadpandoc-ea8af33dab2ba5abba12c61ada7e62f9752cb973.tar.gz
Commonmark writer: fix handling of SoftBreak with `hard_line_breaks`.
This should be rendered as a space. Closes #5195.
Diffstat (limited to 'test/command')
-rw-r--r--test/command/5195.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/command/5195.md b/test/command/5195.md
new file mode 100644
index 000000000..10c542eb0
--- /dev/null
+++ b/test/command/5195.md
@@ -0,0 +1,7 @@
+```
+% pandoc -f markdown_strict -t gfm+hard_line_breaks
+Hello
+there
+^D
+Hello there
+```