diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-12 17:47:08 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-12 17:47:08 +0200 |
commit | 2e3b7abaa9877b658fa4f8f2612acc617dff60bb (patch) | |
tree | e823d041521a4af33a7e552ba58f1d4b63335be3 /tests/character_reference.rs | |
parent | 75522b867b15b9a400275cfec9a2ead4ff535473 (diff) | |
download | markdown-rs-2e3b7abaa9877b658fa4f8f2612acc617dff60bb.tar.gz markdown-rs-2e3b7abaa9877b658fa4f8f2612acc617dff60bb.tar.bz2 markdown-rs-2e3b7abaa9877b658fa4f8f2612acc617dff60bb.zip |
Fix a lot of list things
* Add `ListItem`, `ListOrdered`, and `ListUnordered` tokens
* Add support for multiline list items
* Add support for tight lists
* Fix bug where 10 digit long list item values worked
* Fix skip bug when skipping over nested events
Diffstat (limited to 'tests/character_reference.rs')
-rw-r--r-- | tests/character_reference.rs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/character_reference.rs b/tests/character_reference.rs index 77cae3f..fe69a3e 100644 --- a/tests/character_reference.rs +++ b/tests/character_reference.rs @@ -91,12 +91,11 @@ fn character_reference() { "should not support character references as construct markers (1)" ); - // To do: list (ordered vs unordered). - // assert_eq!( - // micromark("* foo\n\n* foo"), - // "<p>* foo</p>\n<ul>\n<li>foo</li>\n</ul>", - // "should not support character references as construct markers (2)" - // ); + assert_eq!( + micromark("* foo\n\n* foo"), + "<p>* foo</p>\n<ul>\n<li>foo</li>\n</ul>", + "should not support character references as construct markers (2)" + ); assert_eq!( micromark("[a](url "tit")"), |