Fixes search html

And suppresses more warnings
This commit is contained in:
Mouse Reeve
2021-12-29 12:26:40 -08:00
parent 65e59e7b56
commit 7623168410
2 changed files with 6 additions and 2 deletions

View File

@ -15,7 +15,11 @@ def validate_html(html):
errors = "\n".join(
e
for e in errors.split("\n")
if "&book" not in e and "id and name attribute" not in e
if "&book" not in e
and "&type" not in e
and "id and name attribute" not in e
and "illegal characters found in URI" not in e
and "escaping malformed URI reference" not in e
)
if errors:
raise Exception(errors)