Project Files
scripts / test-mammoth-html.cjs
const mammoth = require("mammoth");
const fs = require("node:fs/promises");
(async () => {
const buf = await fs.readFile(process.argv[2]);
const r = await mammoth.convertToHtml(
{ buffer: buf },
{ styleMap: ["p[style-name='Quote'] => blockquote:fresh"] },
);
console.log("=== html ===");
console.log(r.value);
})();