Files
docx-js/demo/3-numbering-and-bullet-points.ts

143 lines
4.1 KiB
TypeScript
Raw Normal View History

2018-08-21 02:46:21 +01:00
// Numbering and bullet points example
// Import from 'docx' rather than '../build' if you install from npm
import * as fs from "fs";
import { AlignmentType, convertInchesToTwip, Document, LevelFormat, Packer, Paragraph } from "../build";
2018-08-21 02:46:21 +01:00
2019-11-08 03:11:19 +00:00
const doc = new Document({
numbering: {
config: [
{
reference: "my-crazy-numbering",
levels: [
{
level: 0,
format: LevelFormat.UPPER_ROMAN,
2019-11-08 03:11:19 +00:00
text: "%1",
alignment: AlignmentType.START,
style: {
paragraph: {
2020-12-24 03:37:43 +00:00
indent: { left: convertInchesToTwip(0.5), hanging: convertInchesToTwip(0.18) },
2019-11-08 03:11:19 +00:00
},
},
},
{
level: 1,
format: LevelFormat.DECIMAL,
2019-11-08 03:11:19 +00:00
text: "%2.",
alignment: AlignmentType.START,
style: {
paragraph: {
2020-12-24 03:37:43 +00:00
indent: { left: convertInchesToTwip(1), hanging: convertInchesToTwip(0.68) },
2019-11-08 03:11:19 +00:00
},
},
},
{
level: 2,
format: LevelFormat.LOWER_LETTER,
2019-11-08 03:11:19 +00:00
text: "%3)",
alignment: AlignmentType.START,
style: {
paragraph: {
2020-12-24 03:37:43 +00:00
indent: { left: convertInchesToTwip(1.5), hanging: convertInchesToTwip(1.18) },
2019-11-08 03:11:19 +00:00
},
},
},
{
level: 3,
format: LevelFormat.UPPER_LETTER,
text: "%4)",
alignment: AlignmentType.START,
style: {
paragraph: {
indent: { left: 2880, hanging: 2420 },
},
},
},
2019-11-08 03:11:19 +00:00
],
},
],
},
});
2018-08-21 02:46:21 +01:00
2019-07-31 08:48:02 +01:00
doc.addSection({
children: [
new Paragraph({
text: "Hey you",
numbering: {
2019-11-08 03:11:19 +00:00
reference: "my-crazy-numbering",
2019-07-31 08:48:02 +01:00
level: 0,
},
}),
new Paragraph({
text: "What's up fam",
numbering: {
2019-11-08 03:11:19 +00:00
reference: "my-crazy-numbering",
2019-07-31 08:48:02 +01:00
level: 1,
},
}),
new Paragraph({
text: "Hello World 2",
numbering: {
2019-11-08 03:11:19 +00:00
reference: "my-crazy-numbering",
2019-07-31 08:48:02 +01:00
level: 1,
},
}),
new Paragraph({
text: "Yeah boi",
numbering: {
2019-11-08 03:11:19 +00:00
reference: "my-crazy-numbering",
2019-07-31 08:48:02 +01:00
level: 2,
},
}),
new Paragraph({
text: "Hey you",
bullet: {
level: 0,
},
}),
new Paragraph({
text: "What's up fam",
bullet: {
level: 1,
},
}),
new Paragraph({
text: "Hello World 2",
bullet: {
level: 2,
},
}),
new Paragraph({
text: "Yeah boi",
bullet: {
level: 3,
},
}),
new Paragraph({
text: "101 MSXFM",
numbering: {
reference: "my-crazy-numbering",
level: 3,
},
}),
new Paragraph({
text: "back to level 1",
numbering: {
reference: "my-crazy-numbering",
level: 1,
},
}),
new Paragraph({
text: "back to level 0",
numbering: {
reference: "my-crazy-numbering",
level: 0,
},
}),
2019-07-31 08:48:02 +01:00
],
2019-06-17 01:51:57 +01:00
});
2018-08-21 02:46:21 +01:00
2019-08-07 22:12:14 +01:00
Packer.toBuffer(doc).then((buffer) => {
2018-08-21 02:46:21 +01:00
fs.writeFileSync("My Document.docx", buffer);
});