mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-12-25 17:17:54 +01:00
4 lines
264 B
Bash
Executable File
4 lines
264 B
Bash
Executable File
find _build/html/ -name "*.html" | while read html;do
|
|
html-minifier --collapse-whitespace --remove-comments --remove-optional-tags --remove-redundant-attributes --remove-script-type-attributes --remove-tag-whitespace --use-short-doctype "$html" -o "$html"
|
|
done
|