diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-07 17:21:38 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-07 17:36:35 +0200 |
commit | 4806864e5377a5fef937b3fa02542e620c547969 (patch) | |
tree | c91ae2bbd1dc2037f425efd24d62d05e706e3e60 /tests/autolink.rs | |
parent | c2b4402223e53498078fc33dd55aabc0a48cdb56 (diff) | |
download | markdown-rs-4806864e5377a5fef937b3fa02542e620c547969.tar.gz markdown-rs-4806864e5377a5fef937b3fa02542e620c547969.tar.bz2 markdown-rs-4806864e5377a5fef937b3fa02542e620c547969.zip |
Add basic support for block quotes
Diffstat (limited to 'tests/autolink.rs')
-rw-r--r-- | tests/autolink.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/autolink.rs b/tests/autolink.rs index 9c28834..7396c7a 100644 --- a/tests/autolink.rs +++ b/tests/autolink.rs @@ -10,12 +10,6 @@ const DANGER: &Options = &Options { #[test] fn autolink() { assert_eq!( - micromark("```\n<\n >\n```"), - "<pre><code><\n >\n</code></pre>", - "should support fenced code w/ grave accents" - ); - - assert_eq!( micromark("<http://foo.bar.baz>"), "<p><a href=\"http://foo.bar.baz\">http://foo.bar.baz</a></p>", "should support protocol autolinks (1)" |