diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-14 17:40:10 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-14 17:40:10 +0200 |
commit | 8183323c432fc1359c634feb68bc372e13f0bd03 (patch) | |
tree | 0c80086a956d216960cedc436a3b22372190b7a8 /tests/block_quote.rs | |
parent | e2c9664b0d63ec686f9e4625ac11bb21720f74dc (diff) | |
download | markdown-rs-8183323c432fc1359c634feb68bc372e13f0bd03.tar.gz markdown-rs-8183323c432fc1359c634feb68bc372e13f0bd03.tar.bz2 markdown-rs-8183323c432fc1359c634feb68bc372e13f0bd03.zip |
Add support for container state
* Fix to parse list item continuation based on how big the initial
list item prefix was
* Fix list items that start with blank lines
Diffstat (limited to 'tests/block_quote.rs')
-rw-r--r-- | tests/block_quote.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/block_quote.rs b/tests/block_quote.rs index 647f6cc..c60085d 100644 --- a/tests/block_quote.rs +++ b/tests/block_quote.rs @@ -51,7 +51,7 @@ fn block_quote() { "should not support lazy setext headings underlines in block quotes" ); - // To do: list (indent). + // To do: list (something with interrupting? 🤷♂️). // assert_eq!( // micromark("> - a\n> - b"), // "<blockquote>\n<ul>\n<li>a</li>\n<li>b</li>\n</ul>\n</blockquote>", |