diff options
Diffstat (limited to 'tests/html_flow.rs')
-rw-r--r-- | tests/html_flow.rs | 11 |
1 files changed, 5 insertions, 6 deletions
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("> <div>\n> foo\n\nbar", DANGER), - // "<blockquote>\n<div>\nfoo\n</blockquote>\n<p>bar</p>", - // "should support basic tags w/o ending in containers (1)" - // ); + assert_eq!( + micromark_with_options("> <div>\n> foo\n\nbar", DANGER), + "<blockquote>\n<div>\nfoo\n</blockquote>\n<p>bar</p>", + "should support basic tags w/o ending in containers (1)" + ); // To do: list. // assert_eq!( |