I'm trying to insert bullet point text with docx-template. I know that it can be done with the standard docx like below;
document.add_paragraph('text to be bulleted', style='List Bullet')
But I just can't get the same thing to work on docx-template;
rt = RichText()
rt.add('text to be bulleted', style='List Bullet')
The above code just returns 'text to be bulleted' without the bullet in front.
I've looked through all the "tests" on the github and nothing mentions bullet. Any assistance would be greatly appreciated. Thank you in advance.