每当用户使用TinyMCE输入无序列表时,它将在源代码
下显示<ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li></ul>
当使用reportlab渲染为PDF时,它会显示没有项目符号 所有人都在同一条线上:
第1项第2项第3项
以下是reportlab代码:
<paraStyle name="long_td_contents_right_notes"
alignment="right"
fontName="ACaslon-SemiBold"
fontSize="8"/>
<blockTable style="blocktablestyle1" colWidths="145,{{if wide}}328{{else}}250{{endif}}">
{{ for note in notes }}
<tr><td align="left"><para style="long_td_contents_left">{{ rml(note.title) }}</para></td><td align="left"><para style="long_td_contents_left_notes"> {{ rml(note.body) }}</para></td></tr>
{{endfor}}
对此的任何帮助都将受到广泛赞赏。
谢谢
答案 0 :(得分:0)
这很有用。
{{ for note in notes }}
{{script}}
notesWithBullets = rml( note.body.replace('<li>', '• ').replace('</p>','<br>').replace('</ul>','<br>').replace('</li>', '<br>'))
{{endscript}}
<tr><td align="left"><para style="long_td_contents_left">{{ rml(note.title) }}</para></td><td align="left"><para style="long_td_contents_left">{{ rml(notesWithBullets) }}</para></td></tr>
{{endfor}}