Files
docx-js/docs/usage/bullet-points.md
2021-12-18 15:42:35 +00:00

702 B

Bullet Points

!> Bullet Points requires an understanding of Paragraphs.

Example

To make a bullet point, simply make a paragraph into a bullet point:

const doc = new Document({
    sections: [{
        children: [
            new Paragraph({
                text: "Bullet points",
                bullet: {
                    level: 0 // How deep you want the bullet to be. Maximum level is 9
                }
            }),
            new Paragraph({
                text: "Are awesome",
                bullet: {
                    level: 0
                }
            })
        ],
    }];
});

This will produce:

  • Bullet points
  • Are awesome