Hello,
My code creates a numbered list of visitors like this.
story = []
story.append(ListFlowable(visitors_list, bulletFontName='Times New Roman'))
document.build(story)
I noticed the numbered list does not contain dots after numbers (they look like 1, 2, 3). It would be nice to be able to append a dot or right parenthesis (or any other symbol) to numbers, so that they go like 1., 2., 3. or 1), 2), 3).
How do I do that?
Regards,
Alex.