1 <div tal:define="object nocall:options/object;
2 text_format object/text_format;">
3 <div tal:condition="python:text_format == 'structured-text'"
5 <p tal:replace="structure python:here.portal_transforms.convert('st_to_html', object.text)">Structured text</p>
7 <div tal:condition="python:text_format != 'structured-text' "
9 <p tal:replace="structure object/text">plain text</p>