Minify Jekyll's HTML output with HtmlPress
Add this gem to your site's Gemfile in the :jekyll_plugins
group:
group :jekyll_plugins do
gem 'octopress-minify-html'
end
Then install the gem with Bundler
$ bundle
$ gem install octopress-minify-html
Then add the gem to your Jekyll configuration.
gems:
- octopress-minify-html
After installing, Jekyll's HTML output will be minified by default. If you configure env
in your Jekyll configuration, HTML will be minified only when
env
is set to production.
env: production
You can override the default behavior by setting the minify_html
config.
For example, this will disable minification, regardless of your env
setting.
minify_html: false
You can set configuration options for HtmlPress in your Jekyll configuration like this:
html_press:
unquoted_attributes: false
drop_empty_values: false
strip_crlf: false
js_minifier_options: false
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request