Skip to content

Instantly share code, notes, and snippets.

@pandeiro
Created December 22, 2014 00:45
Show Gist options
  • Save pandeiro/a814a1012698c007e10a to your computer and use it in GitHub Desktop.
Save pandeiro/a814a1012698c007e10a to your computer and use it in GitHub Desktop.
HTML minification with htmlcompressor
(import '[com.googlecode.htmlcompressor.compressor HtmlCompressor])
(def compressor
(doto (HtmlCompressor.)
(.setRemoveIntertagSpaces true))
(defn compress-html [html]
(.compress compressor html))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment