singerla / pptx-automizer

A template based pptx generator for Node.js
MIT License
68 stars 12 forks source link

Bulleted Lists #101

Closed vijayb24 closed 7 months ago

vijayb24 commented 7 months ago

how to add bulleted lists instead of blank texts

singerla commented 7 months ago

First, you need to apply your desired bullet point format to the first line of pptx text shape.

Then, try this:

// Use EOL or this simple line break
const text = ["first line", "second line"].join(`
`);

// inside slide modification:
// modify.setText(text);
vijayb24 commented 7 months ago

Thanks for the reply, can I also add the bullets as tag value and replaceText with textreplacements instead of shapes?

singerla commented 7 months ago

Interesting question! :) It works, please see replace-tagged-text.test.ts

vijayb24 commented 7 months ago

Thanks. will try it out.