diff options
Diffstat (limited to 'tests/hard_break_escape.rs')
-rw-r--r-- | tests/hard_break_escape.rs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/hard_break_escape.rs b/tests/hard_break_escape.rs index 740e706..a486ade 100644 --- a/tests/hard_break_escape.rs +++ b/tests/hard_break_escape.rs @@ -15,12 +15,11 @@ fn hard_break_escape() { "should support leading spaces after an escape hard break" ); - // To do: attention. - // assert_eq!( - // micromark("*foo\\\nbar*"), - // "<p><em>foo<br />\nbar</em></p>", - // "should support escape hard breaks in emphasis" - // ); + assert_eq!( + micromark("*foo\\\nbar*"), + "<p><em>foo<br />\nbar</em></p>", + "should support escape hard breaks in emphasis" + ); assert_eq!( micromark("``code\\\ntext``"), |