diff options
Diffstat (limited to 'tests/definition.rs')
-rw-r--r-- | tests/definition.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/definition.rs b/tests/definition.rs index 620ab69..27c1fed 100644 --- a/tests/definition.rs +++ b/tests/definition.rs @@ -219,7 +219,13 @@ fn definition() { assert_eq!( micromark("> [foo]: /url\n\n[foo]"), "<blockquote>\n</blockquote>\n<p><a href=\"/url\">foo</a></p>", - "should support definitions in block quotes" + "should support definitions in block quotes (1)" + ); + + assert_eq!( + micromark("> [a]: <> 'b\n> c'"), + "<blockquote>\n</blockquote>", + "should support definitions in block quotes (2)" ); // Extra |