Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789
  1. var minify = require("html-minifier").minify;
  2. exports.html = function(src) {
  3. return src;
  4. return minify(src, {
  5. removeComments: true,
  6. collapseWhitespace: true,
  7. });
  8. }