From ac3cfc8253e3d3761c65b3c9db5c990f5b07f161 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Fri, 8 Jul 2022 17:18:13 +0200 Subject: Add improved container enter/exit mechanism --- tests/html_flow.rs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'tests/html_flow.rs') diff --git a/tests/html_flow.rs b/tests/html_flow.rs index 71e7bbe..757f2f3 100644 --- a/tests/html_flow.rs +++ b/tests/html_flow.rs @@ -552,12 +552,11 @@ okay.", "should include everything ’till a blank line" ); - // To do: blockquote (some bug). - // assert_eq!( - // micromark_with_options(">
\n> foo\n\nbar", DANGER), - // "
\n
\nfoo\n
\n

bar

", - // "should support basic tags w/o ending in containers (1)" - // ); + assert_eq!( + micromark_with_options(">
\n> foo\n\nbar", DANGER), + "
\n
\nfoo\n
\n

bar

", + "should support basic tags w/o ending in containers (1)" + ); // To do: list. // assert_eq!( -- cgit