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 bebf6cc..e4037a2 100644 --- a/tests/link_resource.rs +++ b/tests/link_resource.rs @@ -231,12 +231,11 @@ fn link_resource() { "should support characer escapes" ); - // To do: link/attention interplay. - // assert_eq!( - // micromark("[link *foo **bar** `#`*](/uri)"), - // "<p><a href=\"/uri\">link <em>foo <strong>bar</strong> <code>#</code></em></a></p>", - // "should support content" - // ); + assert_eq!( + micromark("[link *foo **bar** `#`*](/uri)"), + "<p><a href=\"/uri\">link <em>foo <strong>bar</strong> <code>#</code></em></a></p>", + "should support content" + ); assert_eq!( micromark("[![moon](moon.jpg)](/uri)"), |