No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Minify Jekyll's HTML output using html_press
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Octopress Minify Html

Gem Version Build Status

Minify Jekyll's HTML output with HtmlPress

Installation

Using Bundler

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

Manual Installation

$ gem install octopress-minify-html

Then add the gem to your Jekyll configuration.

gems:
  - octopress-minify-html

Usage

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

HtmlPress Configuration:

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

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request