html5minify 0.3.3

HTML5 minifier implementation based on Servo's html5ever.
Documentation
1
2
3
4
5
6
7
8
.ONESHELL:
.PHONY: testdata bench

testdata:
	@for file in testdata/*.html; do
		echo $$file
		cargo run $(CARGO_FLAGS) -q --manifest-path htmlminify_cli/Cargo.toml $$file $$file.minified
	done