mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
4910a7c2c1
See https://github.com/htacg/tidy-html5/issues/1094. The most recent commit without that regression can't handle `dl` elements with `div` children.
25 lines
623 B
Bash
25 lines
623 B
Bash
#!/bin/sh
|
|
# takes an arg for the output dir.
|
|
# Runs xhtmlize-single-file.sh on every single html file in the output dir.
|
|
# exits if xhtmlize-single-file fails.
|
|
|
|
set -e -u
|
|
|
|
output_dir="$1"
|
|
script_dir="$(dirname "$0")"
|
|
|
|
tidy_version="$(tidy -version)"
|
|
export TIDY="<meta content=\"$tidy_version\" name=\"generator\" />"
|
|
|
|
{
|
|
printf '\t' && sed -e '7q;d' "$output_dir/index.html"
|
|
} >"$output_dir/tmp.css"
|
|
cleanup() {
|
|
rm -f "$output_dir/tmp.css"
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
export XMLLINT_INDENT=' '
|
|
export OUTPUT_DIR="$output_dir"
|
|
find "$output_dir" -type f -name '*.html' -exec sh "$script_dir/xhtmlize-single-file.sh" {} \;
|
|
# done
|