From faca28020f4894bdfcf5a4b164ebbc75864d8776 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Mon, 4 Jul 2022 12:16:51 +0200 Subject: Add support for attention (emphasis, strong) --- tests/thematic_break.rs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'tests/thematic_break.rs') diff --git a/tests/thematic_break.rs b/tests/thematic_break.rs index 06b1193..03f1b7a 100644 --- a/tests/thematic_break.rs +++ b/tests/thematic_break.rs @@ -117,12 +117,11 @@ fn thematic_break() { "should not support thematic breaks w/ other characters (3)" ); - // To do: attention. - // assert_eq!( - // micromark(" *-*"), - // "

-

", - // "should not support thematic breaks w/ mixed markers" - // ); + assert_eq!( + micromark(" *-*"), + "

-

", + "should not support thematic breaks w/ mixed markers" + ); // To do: lists. // assert_eq!( -- cgit