rustdoc: allow custom element rustdoc-search

This commit is contained in:
Michael Howell 2024-05-06 21:50:27 -07:00
parent eeb59f16a5
commit 9262816194

View file

@ -29,6 +29,8 @@ fn check_html_file(file: &Path) -> usize {
.arg("-quiet")
.arg("--mute-id") // this option is useful in case we want to mute more warnings
.arg("yes")
.arg("--new-blocklevel-tags")
.arg("rustdoc-search") // custom elements
.arg("--mute")
.arg(&to_mute_s)
.arg(file);