From 3aa10425c95bbe79050c3166702e38758fbe646e Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Fri, 15 Jul 2022 19:54:38 +0200 Subject: Fix interrupting of ordered items --- tests/commonmark.rs | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'tests') diff --git a/tests/commonmark.rs b/tests/commonmark.rs index 1843a51..1734004 100644 --- a/tests/commonmark.rs +++ b/tests/commonmark.rs @@ -999,7 +999,7 @@ of dashes"/> r###"Setext headings (91)"### ); -// To do: some interruption bug. +// To do: lazy setext underline bug. // assert_eq!( // micromark_with_options(r###"> foo // bar @@ -3913,16 +3913,15 @@ baz r###"Lists (302)"### ); - // To do: Some interruption bug. - // assert_eq!( - // micromark_with_options(r###"The number of windows in my house is - // 14. The number of doors is 6. - // "###, DANGER), - // r###"

The number of windows in my house is - // 14. The number of doors is 6.

- // "###, - // r###"Lists (303)"### - // ); + assert_eq!( + micromark_with_options(r###"The number of windows in my house is +14. The number of doors is 6. +"###, DANGER), + r###"

The number of windows in my house is +14. The number of doors is 6.

+"###, + r###"Lists (303)"### +); assert_eq!( micromark_with_options(r###"The number of windows in my house is -- cgit