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 2e3a3ba..c4f6f1d 100644 --- a/tests/hard_break_escape.rs +++ b/tests/hard_break_escape.rs @@ -9,12 +9,11 @@ fn hard_break_escape() { "should support a backslash to form a hard break" ); - // To do: trimming whitespace in paragraphs. - // assert_eq!( - // micromark("foo\\\n bar"), - // "<p>foo<br />\nbar</p>", - // "should support leading spaces after an escape hard break" - // ); + assert_eq!( + micromark("foo\\\n bar"), + "<p>foo<br />\nbar</p>", + "should support leading spaces after an escape hard break" + ); // To do: attention. // assert_eq!( |