├── .travis.yml ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── htmlmin.go └── htmlmin_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchest/htmlmin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchest/htmlmin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchest/htmlmin/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchest/htmlmin/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchest/htmlmin/HEAD/go.sum -------------------------------------------------------------------------------- /htmlmin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchest/htmlmin/HEAD/htmlmin.go -------------------------------------------------------------------------------- /htmlmin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchest/htmlmin/HEAD/htmlmin_test.go --------------------------------------------------------------------------------