dolanmiu / docx

Easily generate and modify .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
https://docx.js.org/
MIT License
4.44k stars 486 forks source link

Document patcher removes document header #2690

Open lectrician1 opened 5 months ago

lectrician1 commented 5 months ago

I have a document with a pre-existing header and when I run patchDocument and have it output to a new document with

.then((doc) => {
    fs.writeFileSync("My Document.docx", doc);
});

the header is removed from the original document (but the patch works).