HTML parser

You say it looks if there is a closing tag when EnableHTML = true to determine if the cell contains HTML or not.
It doesn't seem to be the case because "<banana" currently show nothing. The parser currently seems to ignore the text if it doesn't end up finding a closing tag. Don't you think this is a bug since you mention the parser is looking for a closing tag and it doesn't seem to be the case?
<b>anana = "anana" in bold (this feels ok)
<banana = "". For this on i would expect to get "<banana" because there is no closing tag (instead of the parser eating my string and returning nothing)
<g>anana = "<g>anana" because G is not a real tag. (this feels ok)
<ganana = "<ganana" (this also feels ok)

Isn't this a bug in the parser?

Thanks