this is my code
<info label="NOTE: For a new line add <br> in the text input."/>
The issue is, it picks up the "<" and ">" values and ends the info line for that attribute in the element line.
Is there a way to ignore that?
Turns out xml has a list of invalid characters. You can find the character here
https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references
in my case, I have to do this
<info label="NOTE: For a new line add $lt;br> in the text input."/>
Hope this helped.