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/character_reference.rs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'tests/character_reference.rs') diff --git a/tests/character_reference.rs b/tests/character_reference.rs index c87657e..dec1d0c 100644 --- a/tests/character_reference.rs +++ b/tests/character_reference.rs @@ -85,12 +85,11 @@ fn character_reference() { "should not support character references in indented code" ); - // To do: attention. - // assert_eq!( - // micromark("*foo*\n*foo*"), - // "

*foo*\nfoo

", - // "should not support character references as construct markers (1)" - // ); + assert_eq!( + micromark("*foo*\n*foo*"), + "

*foo*\nfoo

", + "should not support character references as construct markers (1)" + ); // To do: list. // assert_eq!( -- cgit