diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-29 16:14:32 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-29 16:14:32 +0200 |
commit | fa37356074c1bc3a0f74b6f6a22e038b7842ff4d (patch) | |
tree | 6e91262eb1d10acf08bae36fc1902e64e8178366 /tests/character_escape.rs | |
parent | a1a66ce2a848458a7e0cdaf110ceeffb7b8943a2 (diff) | |
download | markdown-rs-fa37356074c1bc3a0f74b6f6a22e038b7842ff4d.tar.gz markdown-rs-fa37356074c1bc3a0f74b6f6a22e038b7842ff4d.tar.bz2 markdown-rs-fa37356074c1bc3a0f74b6f6a22e038b7842ff4d.zip |
Add support for compiling definitions
Diffstat (limited to 'tests/character_escape.rs')
-rw-r--r-- | tests/character_escape.rs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/character_escape.rs b/tests/character_escape.rs index 3e3e839..26e9336 100644 --- a/tests/character_escape.rs +++ b/tests/character_escape.rs @@ -67,12 +67,11 @@ fn character_escape() { "should escape in resource and title" ); - // To do: link (reference). - // assert_eq!( - // micromark("[foo]: /bar\\* \"ti\\*tle\"\n\n[foo]"), - // "<p><a href=\"/bar*\" title=\"ti*tle\">foo</a></p>", - // "should escape in definition resource and title" - // ); + assert_eq!( + micromark("[foo]: /bar\\* \"ti\\*tle\"\n\n[foo]"), + "<p><a href=\"/bar*\" title=\"ti*tle\">foo</a></p>", + "should escape in definition resource and title" + ); assert_eq!( micromark("``` foo\\+bar\nfoo\n```"), |