[reportlab-users] RML not formatting, printing <b> </b> instead

Alejandro Díaz alejandro.diaz at open-phoenix.com
Tue Apr 28 06:23:01 EDT 2015


Hello:




I am using this in order to create a item list to be printed on an rml
report:


#In the python code

for item in items:
  if item['condition']: # This condition is defined in the code
    name = '<b>' + item['name'] + '</b>'
  else: name = item['name']




The coulde will give me a main items wich are composed with a list of items
(something like the BoM).


Then in the rml i am using:

<para style="P5"> Items: [[ d["item"] ]]</para>


This will me print a report with a list of the items contained in the item,
and depending if the item in the list accomplish the 'condition' this
should use the format (<b> </b>).


The target should be: Items: Item1 Item2 *Item3* Item4

I get instead Items: Item1 Item2 <b>Item3</b> Item4


Could someone tell me what I am doing wrong? I tried the escape codes <
and > on the code but I get <b>Item3</b>

Regards!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://pairlist2.pair.net/pipermail/reportlab-users/attachments/20150428/7ab9f317/attachment.html>


More information about the reportlab-users mailing list