File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
/// List of characters that are considered punctuation.
4
4
///
5
- /// > 👉 **Important**: this module is generated by `generate/src/main .rs`.
5
+ /// > 👉 **Important**: this module is generated by `build .rs`.
6
6
/// > It is generate from the latest Unicode data.
7
7
///
8
8
/// Rust does not contain an `is_punctuation` method on `char`, while it does
Original file line number Diff line number Diff line change @@ -129,5 +129,13 @@ fn fuzz() -> Result<(), String> {
129
129
"12: mdx: handle invalid mdx without panic (GH-26)"
130
130
) ;
131
131
132
+ assert ! (
133
+ matches!(
134
+ to_mdast( "=\n =\n =\n a\n =" , & Default :: default ( ) ) ,
135
+ Ok ( mdast:: Node :: Root ( _) )
136
+ ) ,
137
+ "yy: setext headings next to each other (GH-31)"
138
+ ) ;
139
+
132
140
Ok ( ( ) )
133
141
}
You can’t perform that action at this time.
0 commit comments