All Projects → sindresorhus → Grunt Minify Html

sindresorhus / Grunt Minify Html

Licence: mit
Minify HTML

Programming Languages

javascript
184084 projects - #8 most used programming language

grunt-minify-html

Minify HTML using minimize

Issues with the output should be reported on the minimize issue tracker.

This differs from grunt-contrib-htmlmin in that it uses a proper HTML-parser instead of a bunch of fragile regexes.

Install

$ npm install --save-dev grunt-minify-html

Usage

require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks

grunt.initConfig({
	minifyHtml: {
		options: {
			cdata: true
		},
		dist: {
			files: {
				'dist/index.html': 'src/index.html'
			}
		}
	}
});

grunt.registerTask('default', ['minifyHtml']);

Options

See the minimize options.

License

MIT © Sindre Sorhus

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].