diff options
Diffstat (limited to 'tests/definition.rs')
-rw-r--r-- | tests/definition.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/definition.rs b/tests/definition.rs index 27c1fed..5fee153 100644 --- a/tests/definition.rs +++ b/tests/definition.rs @@ -228,6 +228,12 @@ fn definition() { "should support definitions in block quotes (2)" ); + assert_eq!( + micromark("> [a]\n\n[a]: b (c\n)"), + "<blockquote>\n<p><a href=\"b\" title=\"c\n\">a</a></p>\n</blockquote>\n", + "should support definitions in block quotes (3)" + ); + // Extra assert_eq!( micromark("[\\[\\+\\]]: example.com\n\nLink: [\\[\\+\\]]."), |