const htmlnano = require('.'); // const posthtml = require('posthtml'); const safePreset = require('./lib/presets/safe'); // const options = { // minifySvg: false, // minifyJs: false, // }; // // posthtml, posthtml-render, and posthtml-parse options // const postHtmlOptions = { // sync: true, // https://github.com/posthtml/posthtml#usage // lowerCaseTags: true, // https://github.com/posthtml/posthtml-parser#options // quoteAllAttributes: false, // https://github.com/posthtml/posthtml-render#options // }; // const html = ` // // // // // // // // // // // // // // `; const options = { minifySvg: safePreset.minifySvg, }; const html = ` image `; htmlnano // "preset" arg might be skipped (see "Presets" section below for more info) // "postHtmlOptions" arg might be skipped .process(html) .then(function (result) { // result.html is minified console.log(result.html); }) .catch(function (err) { console.error(err); });