I have a list of text to be added to a reportlab frame
style = getSampleStyleSheet()[\'Normal\'] style.wordWrap = \'LTR\' style.leading = 12 for legend in le
As PolyGeo says, you can use to add new lines to a Paragraph.
Convert new lines to tags
replace('\n','\n')
Updated code
for legend in legends: content = str(legend).replace('\n','\n') elements.append(Paragraph(content, style))