diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-08 13:26:23 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-08 13:26:23 +0200 |
commit | c1b325a6dcf4bb8795dd2e5b2cdb1dcfcf61faf5 (patch) | |
tree | a94fc69206c3d493028845030f5d9beb3fce48bd /tests/code_fenced.rs | |
parent | bd0cb0d0395abb06941960938aacc3639148a96c (diff) | |
download | markdown-rs-c1b325a6dcf4bb8795dd2e5b2cdb1dcfcf61faf5.tar.gz markdown-rs-c1b325a6dcf4bb8795dd2e5b2cdb1dcfcf61faf5.tar.bz2 markdown-rs-c1b325a6dcf4bb8795dd2e5b2cdb1dcfcf61faf5.zip |
Fix closing of flow when exiting containers
Diffstat (limited to '')
-rw-r--r-- | tests/code_fenced.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/code_fenced.rs b/tests/code_fenced.rs index 84d0d83..29ef62a 100644 --- a/tests/code_fenced.rs +++ b/tests/code_fenced.rs @@ -234,7 +234,7 @@ fn code_fenced() { // "should not support a closing sequence w/ too much indent, regardless of opening sequence (2)" // ); - // To do: blockquote (some bug). + // To do: blockquote (some bug, perhaps compiler). // assert_eq!( // micromark("> ```a\nb"), // "<blockquote>\n<pre><code class=\"language-a\"></code></pre>\n</blockquote>\n<p>b</p>", @@ -247,7 +247,7 @@ fn code_fenced() { "should not support lazyness (2)" ); - // To do: blockquote (lazy). + // To do: blockquote (some bug, also compiler). // assert_eq!( // micromark("> ```a\n```"), // "<blockquote>\n<pre><code class=\"language-a\"></code></pre>\n</blockquote>\n<pre><code></code></pre>\n", |