Skip to content

Commit

Permalink
Allow fuzzing all HTML declarations
Browse files Browse the repository at this point in the history
Issue pulldown-cmark#659 was closed via pulldown-cmark#668, so we can clean this up now.
  • Loading branch information
mgeisler committed Jun 24, 2023
1 parent aa37ef4 commit ef98da8
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions fuzz/fuzz_targets/commonmark_js.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ fuzz_target!(|text: String| {
return;
}

// https://github.com/raphlinus/pulldown-cmark/issues/659
if text.contains("<!") {
return;
}

// There are some trivial differences due to trailing whitespace.
let text = text
.lines()
Expand Down

0 comments on commit ef98da8

Please sign in to comment.