deno.land / x / docx@8.5.0 / demo / 8-header-footer.ts

8-header-footer.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
// Add text to header and footer
import * as fs from "fs";import { Document, Footer, Header, Packer, Paragraph } from "docx";
const doc = new Document({ sections: [ { headers: { default: new Header({ children: [new Paragraph("Header text")], }), }, footers: { default: new Footer({ children: [new Paragraph("Footer text")], }), }, children: [new Paragraph("Hello World")], }, ],});
Packer.toBuffer(doc).then((buffer) => { fs.writeFileSync("My Document.docx", buffer);});
docx

Version Info

Tagged at
4 months ago