Usage
Change Tracking
Instead of adding a
TextRuninto aParagraph, you can also add anInsertedTextRunorDeletedTextRunwhere you need to supply anid,authoranddatefor the change.
import { Paragraph, TextRun, InsertedTextRun, DeletedTextRun } from "betterdocx";
const paragraph = new Paragraph({
children: [
new TextRun("This is a simple demo "),
new TextRun({
text: "on how to "
}),
new InsertedTextRun({
text: "mark a text as an insertion ",
id: 0,
author: "Firstname Lastname",
date: "2020-10-06T09:00:00Z",
}),
new DeletedTextRun({
text: "or a deletion.",
id: 1,
author: "Firstname Lastname",
date: "2020-10-06T09:00:00Z",
})
],
});Note that for a InsertedTextRun and DeletedTextRun, it is not possible to simply call it with only a text as in new TextRun("some text"), since the additional fields for change tracking need to be provided. Similar to a normal TextRun you can add additional text properties.
import { Paragraph, TextRun, InsertedTextRun, DeletedTextRun } from "betterdocx";
const paragraph = new Paragraph({
children: [
new TextRun("This is a simple demo"),
new DeletedTextRun({
text: "with a deletion.",
color: "ff0000",
bold: true,
size: 24,
id: 0,
author: "Firstname Lastname",
date: "2020-10-06T09:00:00Z",
})
],
});In addition to marking text as inserted or deleted, change tracking can also be added via the document settings. This will enable new changes to be tracked as well.
import { Document } from "betterdocx";
const doc = new Document({
features: {
trackRevisions: true,
},
});If you want to express a style changes, you can add a revision to a TextRun which need to include all previous style attributes.
new TextRun({
bold: true,
text: "This text is now bold and was previously not",
revision: {
id: 1,
author: "Firstname Lastname",
date: "2020-10-06T09:05:00Z",
bold: false,
}
}).break()