From 5d71e37f261ec2a6b48e95542aeb29228afa7c4b Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 21 Feb 2017 23:39:58 +0100 Subject: MediaWiki reader: ensure that list starts begin at left margin. Including when they're in tables or other list items. Closes #2606. --- test/command/2606.md | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 test/command/2606.md (limited to 'test') diff --git a/test/command/2606.md b/test/command/2606.md new file mode 100644 index 000000000..53eaa0d06 --- /dev/null +++ b/test/command/2606.md @@ -0,0 +1,58 @@ +``` +% pandoc -f mediawiki -t html5 +{| +| * hello +|} +^D + + + + + + +

* hello

+``` + +``` +% pandoc -f mediawiki -t html5 +{| +| +* hello +|} +^D + + + + + + +
    +
  • hello
  • +
+``` + +``` +% pandoc -f mediawiki -t html5 +{| +| + * hello +|} +^D + + + + + + +

* hello

+``` + +``` +% pandoc -f mediawiki -t html5 +* * hi +^D + +``` + -- cgit v1.2.3