19 lines
385 B
JavaScript
19 lines
385 B
JavaScript
module.exports = {
|
|
on(eventName) {
|
|
if (eventName === "attached") {
|
|
this.attached = false;
|
|
}
|
|
},
|
|
postparse(postparsed, { filePath }) {
|
|
if (filePath !== "word/settings.xml") {
|
|
return null;
|
|
}
|
|
return postparsed.map(function (part) {
|
|
if (part.type === "tag" && part.tag === "w:proofState") {
|
|
return { type: "content", value: "" };
|
|
}
|
|
return part;
|
|
});
|
|
},
|
|
};
|