deno.land / x / docx@8.5.0 / demo / 33-sequential-captions.ts

33-sequential-captions.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
39
40
41
42
43
44
45
46
47
48
49
50
// Sequential Captions
import * as fs from "fs";import { Document, Packer, Paragraph, SequentialIdentifier, TextRun } from "docx";
const doc = new Document({ sections: [ { children: [ new Paragraph({ children: [ new TextRun("Hello World 1->"), new SequentialIdentifier("Caption"), new TextRun(" text after sequencial caption 2->"), new SequentialIdentifier("Caption"), ], }), new Paragraph({ children: [ new TextRun("Hello World 1->"), new SequentialIdentifier("Label"), new TextRun(" text after sequencial caption 2->"), new SequentialIdentifier("Label"), ], }), new Paragraph({ children: [ new TextRun("Hello World 1->"), new SequentialIdentifier("Another"), new TextRun(" text after sequencial caption 3->"), new SequentialIdentifier("Label"), ], }), new Paragraph({ children: [ new TextRun("Hello World 2->"), new SequentialIdentifier("Another"), new TextRun(" text after sequencial caption 4->"), new SequentialIdentifier("Label"), ], }), ], }, ],});
Packer.toBuffer(doc).then((buffer) => { fs.writeFileSync("My Document.docx", buffer);});
docx

Version Info

Tagged at
4 months ago