diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-15 10:45:41 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-15 10:45:41 +0200 |
commit | a7a4d19fe3bc9e5e0c3218d9af41d9cee80e9374 (patch) | |
tree | bd7417c6f79fcfcf2bad8fa55683036968f33f6e /tests | |
parent | 8f9c7c6cf112e44f64b3dfbcd012e6550d8883e5 (diff) | |
download | markdown-rs-a7a4d19fe3bc9e5e0c3218d9af41d9cee80e9374.tar.gz markdown-rs-a7a4d19fe3bc9e5e0c3218d9af41d9cee80e9374.tar.bz2 markdown-rs-a7a4d19fe3bc9e5e0c3218d9af41d9cee80e9374.zip |
Fix lazy first line in code (fenced)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/list.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/list.rs b/tests/list.rs index 2819bdb..0360ee7 100644 --- a/tests/list.rs +++ b/tests/list.rs @@ -435,7 +435,6 @@ fn list() { "should support tight lists w/ a blank line in a block quote" ); - // To do: list (some crash). assert_eq!( micromark("- a\n > b\n ```\n c\n ```\n- d"), "<ul>\n<li>a\n<blockquote>\n<p>b</p>\n</blockquote>\n<pre><code>c\n</code></pre>\n</li>\n<li>d</li>\n</ul>", |