Skip to content

Instantly share code, notes, and snippets.

@hail2u
Created April 5, 2016 05:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hail2u/80e541267624fff7ed91d2cdf3390082 to your computer and use it in GitHub Desktop.
Save hail2u/80e541267624fff7ed91d2cdf3390082 to your computer and use it in GitHub Desktop.
HTML Minifierのオプション
var optionsHTMLMinifier = {
collapseBooleanAttributes: true,
collapseInlineTagWhitespace: true,
collapseWhitespace: true,
minifyCSS: true,
minifyJS: true,
removeAttributeQuotes: true,
removeComments: true,
removeEmptyElements: true,
removeOptionalTags: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
sortAttributes: true,
sortClassName: true,
useShortDoctype: true
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment