deno.land / x / docx@8.5.0 / demo / 17-footnotes.ts

17-footnotes.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
51
52
53
54
55
56
57
58
59
60
61
62
63
// Footnotes
import * as fs from "fs";import { Document, FootnoteReferenceRun, Packer, Paragraph, TextRun } from "docx";
const doc = new Document({ footnotes: { 1: { children: [new Paragraph("Foo"), new Paragraph("Bar")] }, 2: { children: [new Paragraph("Test")] }, 3: { children: [new Paragraph("My amazing reference")] }, 4: { children: [new Paragraph("Foo1")] }, 5: { children: [new Paragraph("Test1")] }, 6: { children: [new Paragraph("My amazing reference1")] }, }, sections: [ { children: [ new Paragraph({ children: [ new TextRun({ children: ["Hello"], }), new FootnoteReferenceRun(1), new TextRun({ children: [" World!"], }), new FootnoteReferenceRun(2), new TextRun({ children: [" GitHub!"], }), ], }), new Paragraph({ children: [new TextRun("Hello World"), new FootnoteReferenceRun(3)], }), ], }, { children: [ new Paragraph({ children: [ new TextRun({ children: ["Hello"], }), new FootnoteReferenceRun(4), new TextRun({ children: [" World!"], }), new FootnoteReferenceRun(5), ], }), new Paragraph({ children: [new TextRun("Hello World Again"), new FootnoteReferenceRun(6)], }), ], }, ],});
Packer.toBuffer(doc).then((buffer) => { fs.writeFileSync("My Document.docx", buffer);});
docx

Version Info

Tagged at
4 months ago