TPlanneritem text html/plain

Hello,

Is it possible to force the tekst of a planneritem to be interpreted as HTML?
for example:
If the planneritem.text is this :

eerste
tweede
< BR > //without the spaces, but otherwise my point is not clear (!)
derde

< BR > is NOT interpreted as a linebreak.

The result is:

eerste
tweede
< BR > //without the spaces, but otherwise my point is not clear (!)
derde

< BR >

If I chang the text to

< i >
eerste
tweede
< BR >
derde
< /i >

The text is shown as

eerste tweede
derde

For simplicity (and performance) of detecting what is HTML and render it as HTML, it just checks on the sequence '</'. So, add a dummy tag like like '<b></b>' at the end of a string and it will always be rendered as HTML.