We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56cd834 commit 18a4740Copy full SHA for 18a4740
tests/fuzz.rs
@@ -109,6 +109,14 @@ fn fuzz() -> Result<(), String> {
109
"10: attention in different links (GH-21)"
110
);
111
112
+ assert!(
113
+ matches!(
114
+ to_mdast("* ~~~\n1.", &Default::default()),
115
+ Ok(mdast::Node::Root(_))
116
+ ),
117
+ "10: should support unordered list with code block, followed by ordered list"
118
+ );
119
+
120
assert!(
121
matches!(
122
to_mdast("* [ ]\na", &Default::default()),
0 commit comments