# Filter false positives from the .messages entry of Nu Validator output
.messages |= map(
	. | select(
		.type == "error" and
		(
			( # See https://github.com/w3c/css-validator/issues/361
				.message == "CSS: Parse Error."
				and .extract == "){outline:none}}@media(prefers"
				and .hiliteLength == 1
			)
			or
			( # See https://github.com/validator/validator/issues/1166
				.message == "Attribute “media” not allowed on element “meta” at this point."
				and (.extract | test(" name=\"theme-color\""))
			)
			or
			( # Allow raw templates
				(.url | test ("/search/index."))
				and (
					(.message == "Text not allowed in element “ol” in this context.")
					or
					(.message == "Bad value “{{ .URL }}” for attribute “href” on element “a”: Illegal character in path segment: “{” is not allowed.")
					or
					(.message == "Bad value “{{ .URL }}” for attribute “cite” on element “q”: Illegal character in path segment: “{” is not allowed.")
				)
				and (
					(.extract | test("{{"))
					or
					(.extract | test("}}"))
				)
			)
		) | not
	)
) | del(..|select(. == [])) | del(..|select(. == {})) | select(. != null)