From 23f964b9076f9795b00e740d20feebeb1d6d91db Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Wed, 30 Dec 2020 21:31:28 -0800 Subject: Mediawiki reader: allow space around storng/emph delimiters. Closes #6993. --- test/command/6993.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/command/6993.md (limited to 'test/command') diff --git a/test/command/6993.md b/test/command/6993.md new file mode 100644 index 000000000..b7f7f5384 --- /dev/null +++ b/test/command/6993.md @@ -0,0 +1,21 @@ +``` +% pandoc -f mediawiki -t native +'''Should be bold ''' +^D +[Para [Strong [Str "Should",Space,Str "be",Space,Str "bold"]]] +``` + +``` +% pandoc -f mediawiki -t native +''' Should be bold''' +^D +[Para [Strong [Str "Should",Space,Str "be",Space,Str "bold"]]] +``` + +``` +% pandoc -f mediawiki -t native +'' Should be emph '' +^D +[Para [Emph [Str "Should",Space,Str "be",Space,Str "emph"]]] +``` + -- cgit v1.2.3