
If the text you're loading in from your XML file needs bold or italic styling, you can add that by wrapping your text with the applicable HTML elements encoded as character entities. For example, to create bold text:
<b>Caption</b>
Ditto for italic. You'd use "i" instead of "b" above.

