From 4806864e5377a5fef937b3fa02542e620c547969 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Thu, 7 Jul 2022 17:21:38 +0200 Subject: Add basic support for block quotes --- tests/thematic_break.rs | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'tests/thematic_break.rs') diff --git a/tests/thematic_break.rs b/tests/thematic_break.rs index 03f1b7a..7a15c32 100644 --- a/tests/thematic_break.rs +++ b/tests/thematic_break.rs @@ -148,19 +148,18 @@ fn thematic_break() { "should not support thematic breaks w/ dashes interrupting paragraphs (setext heading)" ); - // To do: list. + // To do: lists. // assert_eq!( // micromark("- Foo\n- * * *"), // "", // "should support thematic breaks in lists" // ); - // To do: blockquote. - // assert_eq!( - // micromark("> ---\na"), - // "
\n
\n
\n

a

", - // "should not support lazyness (1)" - // ); + assert_eq!( + micromark("> ---\na"), + "
\n
\n
\n

a

", + "should not support lazyness (1)" + ); // assert_eq!( // micromark("> a\n---"), -- cgit