deno.land / x / docx@8.5.0 / demo / 45-highlighting-text.ts

45-highlighting-text.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Highlighting text
import * as fs from "fs";import { AlignmentType, Document, Header, Packer, Paragraph, TextRun } from "docx";
const doc = new Document({ sections: [ { headers: { default: new Header({ children: [ new Paragraph({ alignment: AlignmentType.RIGHT, children: [ new TextRun({ text: "Hello World", color: "FF0000", bold: true, size: 24, font: { name: "Garamond", }, highlight: "yellow", }), ], }), ], }), }, children: [], }, ],});
Packer.toBuffer(doc).then((buffer) => { fs.writeFileSync("My Document.docx", buffer);});
docx

Version Info

Tagged at
4 months ago