34 lines
818 B
TypeScript
34 lines
818 B
TypeScript
// Change background colour of whole document
|
|
// Import from 'docx' rather than '../build' if you install from npm
|
|
import * as fs from "fs";
|
|
import { Document, Packer, Paragraph, TextRun } from "../build";
|
|
|
|
const doc = new Document({
|
|
background: {
|
|
color: "C45911",
|
|
},
|
|
});
|
|
|
|
doc.addSection({
|
|
properties: {},
|
|
children: [
|
|
new Paragraph({
|
|
children: [
|
|
new TextRun("Hello World"),
|
|
new TextRun({
|
|
text: "Foo Bar",
|
|
bold: true,
|
|
}),
|
|
new TextRun({
|
|
text: "\tGithub is the best",
|
|
bold: true,
|
|
}),
|
|
],
|
|
}),
|
|
],
|
|
});
|
|
|
|
Packer.toBuffer(doc).then((buffer) => {
|
|
fs.writeFileSync("My Document.docx", buffer);
|
|
});
|