We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64d7e0d commit a3ef4edCopy full SHA for a3ef4ed
src/tools/html-checker/main.rs
@@ -16,11 +16,6 @@ fn check_html_file(file: &Path) -> usize {
16
"MISSING_ENDTAG_BEFORE",
17
"INSERTING_TAG",
18
"DISCARDING_UNEXPECTED",
19
- // This error is caused by nesting the Notable Traits tooltip within an <h4> tag.
20
- // The solution is to avoid doing that, but we need to have the <h4> tags for accessibility
21
- // reasons, and we need the Notable Traits tooltip to help everyone understand the Iterator
22
- // combinators
23
- "TAG_NOT_ALLOWED_IN",
24
];
25
let to_mute_s = to_mute.join(",");
26
let mut command = Command::new("tidy");
0 commit comments