<richText> tag must be defined under a <gendoc> tag and allows to display rich text content (HTML or RTF) content inside the generated document.
It can contain the following attributes:
Rich text content can come:
<richText filePath=‘D:/file.html’ />
equivalent to :
<richText filePath=‘D:/file.html’ format=‘HTML’/>
<richText filePath=‘D:/file.rtf’ format=‘RTF’/>
<richText>
tag must contain only the script to access the rich text content :
no additional spaces or line breaks .
For example for UML comment contents in HTML format in the model:
<richText format=‘HTML’>[comment._body/]</richText>
It is equivalent to:
<richText>[comment._body/]</richText>