├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github └── issue_template.md ├── .gitignore ├── .travis.yml ├── .verb.md ├── LICENSE ├── README.md ├── examples ├── gulpfile.js └── index.html ├── index.js ├── package.json └── test ├── expected ├── collapse.html └── normal.html ├── fixtures └── index.html └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/.travis.yml -------------------------------------------------------------------------------- /.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/.verb.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/README.md -------------------------------------------------------------------------------- /examples/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/examples/gulpfile.js -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/examples/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/package.json -------------------------------------------------------------------------------- /test/expected/collapse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/test/expected/collapse.html -------------------------------------------------------------------------------- /test/expected/normal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/test/expected/normal.html -------------------------------------------------------------------------------- /test/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/test/fixtures/index.html -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/gulp-htmlmin/HEAD/test/test.js --------------------------------------------------------------------------------