diff options
Diffstat (limited to 'tests/link_resource.rs')
-rw-r--r-- | tests/link_resource.rs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/link_resource.rs b/tests/link_resource.rs index d75736e..7761569 100644 --- a/tests/link_resource.rs +++ b/tests/link_resource.rs @@ -443,12 +443,11 @@ fn link_resource() { "should not support 33 or more sets of parens" ); - // To do: trim whitespace in string? - // assert_eq!( - // micromark("[a](b \"\n c\")"), - // "<p><a href=\"b\" title=\"\nc\">a</a></p>", - // "should support an eol at the start of a title" - // ); + assert_eq!( + micromark("[a](b \"\n c\")"), + "<p><a href=\"b\" title=\"\nc\">a</a></p>", + "should support an eol at the start of a title" + ); assert_eq!( micromark("[a](b( \"c\")"), |