2024-04-19 07:18:45 +00:00
|
|
|
# I regularly validate every page with the Nu HTML Checker.
|
|
|
|
# It has false positives; I report them upstream and silence them here.
|
|
|
|
# I use jq/jaq to remove them from the JSON output.
|
2024-05-03 19:07:13 +00:00
|
|
|
# Use the latest commit of Nu and its css-validator submodule for best results.
|
2022-05-11 17:01:22 +00:00
|
|
|
.messages |= map(
|
|
|
|
. | select(
|
2023-11-25 21:32:55 +00:00
|
|
|
.type == "info" and (
|
|
|
|
.message == "Trailing slash on void elements has no effect and interacts badly with unquoted attribute values."
|
|
|
|
and (.url | test(".html"))
|
|
|
|
) or
|
2022-12-24 18:11:31 +00:00
|
|
|
.type == "error" and (
|
2022-07-16 05:04:15 +00:00
|
|
|
( # see https://github.com/w3c/css-validator/issues/369
|
|
|
|
.message == "CSS: “contain-intrinsic-size”: Property “contain-intrinsic-size” doesn't exist."
|
2023-11-25 21:32:55 +00:00
|
|
|
) or
|
2022-07-24 18:28:23 +00:00
|
|
|
( # see https://github.com/w3c/css-validator/issues/370
|
|
|
|
.message == "CSS: “contain”: “inline-size” is not a “contain” value."
|
2023-11-25 21:32:55 +00:00
|
|
|
) or
|
2024-01-31 00:38:12 +00:00
|
|
|
( # See https://github.com/w3c/css-validator/issues/361
|
|
|
|
.message == "CSS: Parse Error."
|
|
|
|
and .extract == "not(:focus-visible){outline:no"
|
2024-01-31 01:04:40 +00:00
|
|
|
and (.url | test(".xhtml"))
|
2024-01-31 00:38:12 +00:00
|
|
|
and .hiliteLength == 1
|
|
|
|
) or
|
2023-11-25 21:32:55 +00:00
|
|
|
( # See https://github.com/w3c/css-validator/issues/361
|
|
|
|
.message == "CSS: Parse Error."
|
|
|
|
and .extract == "){outline:none}}@media(prefers"
|
|
|
|
and .hiliteLength == 1
|
2022-07-24 18:28:23 +00:00
|
|
|
)
|
2022-05-11 17:01:22 +00:00
|
|
|
) | not
|
|
|
|
)
|
2022-06-03 00:18:13 +00:00
|
|
|
) | del(..|select(. == [])) | del(..|select(. == {})) | select(. != null)
|