aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/markdown-reader-more.native6
-rw-r--r--tests/markdown-reader-more.txt8
2 files changed, 13 insertions, 1 deletions
diff --git a/tests/markdown-reader-more.native b/tests/markdown-reader-more.native
index 995991a17..bf8eb98f8 100644
--- a/tests/markdown-reader-more.native
+++ b/tests/markdown-reader-more.native
@@ -15,5 +15,9 @@ Pandoc (Meta [] [] "")
, Plain [HtmlInline "<a>",HtmlInline "</a>"]
, Header 3 [Str "my",Space,Str "header"]
, Header 2 [Str "$",Space,Str "in",Space,Str "math"]
-, Para [Math InlineMath "\\$2 + \\$3"] ]
+, Para [Math InlineMath "\\$2 + \\$3"]
+, Header 2 [Str "Commented",Str "-",Str "out",Space,Str "list",Space,Str "item"]
+, BulletList
+ [ [ Plain [Str "one"]
+ , RawHtml "<!--\n- two\n-->" ], [ Plain [Str "three"] ] ] ]
diff --git a/tests/markdown-reader-more.txt b/tests/markdown-reader-more.txt
index a7d64dde9..02b425e11 100644
--- a/tests/markdown-reader-more.txt
+++ b/tests/markdown-reader-more.txt
@@ -51,3 +51,11 @@
$\$2 + \$3$
+## Commented-out list item
+
+- one
+<!--
+- two
+-->
+- three
+