The mini HTML implementation to display text with HTML tags in various TMS components is a subset of the HTML standard and supports following tags :
B : Bold tag <B> : start bold text </B> : end bold text
Example : This is a <B>test</B>
U : Underline tag <U> : start underlined text </U> : end underlined text
Example : This is a <U>test</U>
I : Italic tag <I> : start italic text </I> : end italic text
Example : This is a <I>test</I>
S : Strikeout tag <S> : start strike-through text </S> : end strike-through text
Example : This is a <S>test</S>
A : anchor tag <A href="value"> : text after tag is an anchor. The ‘value‘ after the href identifier is the anchor. This can be an URL (with ftp,http,mailto,file identifier) or any text. If the value is an URL, the shellexecute function is called, otherwise, the anchor value can be found in the OnAnchorClick event </A> : end of anchor