
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
middleman-minify-html
Advanced tools
middleman-minify-html
is an extension for the Middleman static site generator that minifies whitespace around HTML via Htmlcompressor.
If you're just getting started, install the middleman
gem and generate a new project:
gem install middleman
middleman init MY_PROJECT
If you already have a Middleman project: Add gem 'middleman-minify-html'
to your Gemfile
and run bundle install
activate :minify_html
The various options can be passed with a block or as a hash like so:
activate :minify_html, remove_input_attributes: false
These are the default settings, as listed in the Htmlcompressor documentation:
activate :minify_html do |html|
html.remove_multi_spaces = true # Remove multiple spaces
html.remove_comments = true # Remove comments
html.remove_intertag_spaces = false # Remove inter-tag spaces
html.remove_quotes = true # Remove quotes
html.simple_doctype = false # Use simple doctype
html.remove_script_attributes = true # Remove script attributes
html.remove_style_attributes = true # Remove style attributes
html.remove_link_attributes = true # Remove link attributes
html.remove_form_attributes = false # Remove form attributes
html.remove_input_attributes = true # Remove input attributes
html.remove_javascript_protocol = true # Remove JS protocol
html.remove_http_protocol = false # Remove HTTP protocol
html.remove_https_protocol = false # Remove HTTPS protocol
html.preserve_line_breaks = false # Preserve line breaks
html.simple_boolean_attributes = true # Use simple boolean attributes
html.preserve_patterns = nil # Patterns to preserve
end
The official community forum is available at: http://forum.middlemanapp.com
Github Issues are used for managing bug reports and feature requests. If you run into issues, please search the issues and submit new problems: https://github.com/middleman/middleman-minify-html/issues
The best way to get quick responses to your issues and swift fixes to your bugs is to submit detailed bug reports, include test cases and respond to developer questions in a timely manner. Even better, if you know Ruby, you can submit Pull Requests containing Cucumber Features which describe how your feature should work or exploit the bug you are submitting.
git clone https://github.com/middleman/middleman-minify-html.git
gem install bundler
bundle install
inside the project root to install the gem dependencies.bundle exec rake test
Click here to lend your support to Middleman
Copyright (c) 2012-2014 Thomas Reynolds. MIT Licensed, see LICENSE for details.
FAQs
Unknown package
We found that middleman-minify-html demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.