7bc014aa9c
GitOrigin-RevId: c97e777ff06fcb8d37dcdf5e21e9eff1f34f0e90
21 lines
407 B
Bash
Executable file
21 lines
407 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#! nix-shell -i bash -p html-tidy
|
|
|
|
set -euo pipefail
|
|
shopt -s inherit_errexit
|
|
|
|
normalize() {
|
|
tidy \
|
|
--anchor-as-name no \
|
|
--coerce-endtags no \
|
|
--escape-scripts no \
|
|
--fix-backslash no \
|
|
--fix-style-tags no \
|
|
--fix-uri no \
|
|
--indent yes \
|
|
--wrap 0 \
|
|
< "$1" \
|
|
2> /dev/null
|
|
}
|
|
|
|
diff -U3 <(normalize "$1") <(normalize "$2")
|