diff --git a/tests/fuzz.rs b/tests/fuzz.rs index 4778cbb8..70e60f42 100644 --- a/tests/fuzz.rs +++ b/tests/fuzz.rs @@ -129,5 +129,11 @@ fn fuzz() -> Result<(), String> { "12: mdx: handle invalid mdx without panic (GH-26)" ); + assert_eq!( + to_html("[](a (a \n))"), + "
", + "yy: link and title with newline (GH-79)" + ); + Ok(()) }