djLint/docs/src/_utils/minify-html.js

14 lines
319 B
JavaScript
Raw Normal View History

2022-01-24 15:03:25 +00:00
const htmlmin = require('html-minifier');
2022-01-03 22:45:58 +00:00
2022-01-24 15:03:25 +00:00
module.exports = function (content, outputPath) {
if (outputPath.endsWith('.html')) {
2022-01-03 22:45:58 +00:00
let minified = htmlmin.minify(content, {
useShortDoctype: true,
removeComments: true,
2022-01-24 15:03:25 +00:00
collapseWhitespace: true,
2022-01-03 22:45:58 +00:00
});
return minified;
}
return content;
2022-01-24 15:03:25 +00:00
};