Files
docx-js/usage/bullet-points.md
2019-08-21 23:37:11 +00:00

353 B

Bullet Points

Example

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

const text = new TextRun("Bullet points");
const paragraph = new Paragraph({
    text: "Bullet points",
    bullet: {
        level: 0, // How deep you want the bullet to me
    },
});

This will produce:

  • Bullet points
  • Are awesome