diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-20 18:37:09 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-20 18:37:09 +0200 |
commit | e869533b99eecdc133ed3b4bedc22d24dc2c2dd9 (patch) | |
tree | f8e921c44774061e1fdca854df124caee2c637a6 /tests/definition.rs | |
parent | 769963fd3fe9e7027915fc0ddfc2b0e881aa6952 (diff) | |
download | markdown-rs-e869533b99eecdc133ed3b4bedc22d24dc2c2dd9.tar.gz markdown-rs-e869533b99eecdc133ed3b4bedc22d24dc2c2dd9.tar.bz2 markdown-rs-e869533b99eecdc133ed3b4bedc22d24dc2c2dd9.zip |
Fix bug with tabs
Diffstat (limited to 'tests/definition.rs')
-rw-r--r-- | tests/definition.rs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/definition.rs b/tests/definition.rs index f0869a3..c15e44b 100644 --- a/tests/definition.rs +++ b/tests/definition.rs @@ -49,12 +49,11 @@ fn definition() { // "should support line endings in titles" // ); - // To do: some bug - // assert_eq!( - // micromark("[foo]: /url 'title\n\nwith blank line'\n\n[foo]"), - // "<p>[foo]: /url 'title</p>\n<p>with blank line'</p>\n<p>[foo]</p>", - // "should not support blank lines in titles" - // ); + assert_eq!( + micromark("[foo]: /url 'title\n\nwith blank line'\n\n[foo]"), + "<p>[foo]: /url 'title</p>\n<p>with blank line'</p>\n<p>[foo]</p>", + "should not support blank lines in titles" + ); // To do: link (reference). // assert_eq!( |