From 8a000e3ecc330ff8a4953ebe8c7da9a54eca5c58 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 12 Jun 2017 09:16:05 +0200 Subject: Markdown writer: don't allow soft break in header. Closes #3736. --- test/command/3736.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 test/command/3736.md (limited to 'test') diff --git a/test/command/3736.md b/test/command/3736.md new file mode 100644 index 000000000..b66e0a359 --- /dev/null +++ b/test/command/3736.md @@ -0,0 +1,25 @@ +``` +% pandoc --wrap=preserve -f html -t markdown +

hi +there

+^D +hi there +-------- +``` + +``` +% pandoc --wrap=preserve -f html -t markdown +

hi there +again

+^D +hi *there again* +---------------- +``` + +``` +% pandoc --wrap=preserve -f html -t markdown +

hi
there

+^D +hi there +-------- +``` -- cgit v1.2.3