mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 08:12:11 +00:00
ed04b8628d
Nu updated to flag XHTML-isms. Run on XHTML files so it can default to strict mode.
17 lines
395 B
Bash
17 lines
395 B
Bash
#!/bin/sh
|
|
set -e -u
|
|
pwd="$(dirname "$0")"
|
|
output_dir="$1"
|
|
|
|
files_to_analyze() {
|
|
find "$output_dir" -type f -name '*.xhtml' -o -name '*.svg' \
|
|
| grep -Ev '(bimi\.svg|search/index\.x?html)$'
|
|
}
|
|
|
|
# we skip the BIMI icon (VNU can't handle SVG 1.2) and the search page (it has raw templates).
|
|
vnu \
|
|
--stdout \
|
|
--format json \
|
|
--also-check-svg \
|
|
$(files_to_analyze) \
|
|
| sh "$pwd/filter-vnu.sh"
|