Skip to content

Commit

Permalink
fuzz: add missing options.
Browse files Browse the repository at this point in the history
  • Loading branch information
kivikakk committed Jul 11, 2024
1 parent aa18a1d commit b5ada11
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fuzz/fuzz_targets/all_options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ fuzz_target!(|s: &str| {
extension.header_ids = Some("user-content-".to_string());
extension.footnotes = true;
extension.description_lists = true;
extension.front_matter_delimiter = Some("---".to_string());
extension.multiline_block_quotes = true;
extension.math_dollars = true;
extension.math_code = true;
extension.front_matter_delimiter = Some("---".to_string());
extension.shortcodes = true;
extension.wikilinks_title_after_pipe = true;
extension.wikilinks_title_before_pipe = true;
Expand Down Expand Up @@ -55,6 +55,8 @@ fuzz_target!(|s: &str| {
render.escaped_char_spans = true;
render.ignore_setext = true;
render.ignore_empty_links = true;
render.gfm_quirks = true;
render.prefer_fenced = true;

markdown_to_html(
s,
Expand Down

0 comments on commit b5ada11

Please sign in to comment.