Skip to content

Commit 7f06d55

Browse files
Add mdx parser to fuzzing
Closes GH-25. Reviewed-by: Titus Wormer <[email protected]>
1 parent eea185e commit 7f06d55

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

fuzz/fuzz_targets/markdown.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ fuzz_target!(|data: &[u8]| {
77
let _ = markdown::to_html_with_options(s, &markdown::Options::gfm());
88
let _ = markdown::to_mdast(s, &markdown::ParseOptions::default());
99
let _ = markdown::to_mdast(s, &markdown::ParseOptions::gfm());
10+
let _ = markdown::to_mdast(s, &markdown::ParseOptions::mdx());
1011
}
1112
});

0 commit comments

Comments
 (0)