Formatting XML Text - Need Help

Is it possible to add bold or italics to parts of the text in my XML file? I have my textfield set as “htmlText”, and I’ve turned on “render text as html”. I can’t get it to work. I did find one forum posting on this here, but it uses a different setup. Other Post

XML File:


  <gallery>
  <image type="photo" 
  main="images/01.jpg" 
  thmb="images/01_sm.jpg" 
  title="Title Text" 
  desc="Description goes here." />
  </gallery>

I’ve tried this, but it isn’t working.


   <gallery>
   <image type="photo" 
  main="images/01.jpg" 
  thmb="images/01_sm.jpg" 
  title="Title Text" 
  desc="Description goes [color=Red]<b>[/color]here[color=Red]<b>[/color]." />
   </gallery>

Using this breaks the XML. I am assuming it is because it is reading the brakets, and I’ve tried using / in front of the brakets or ‘<b>’ around the HTML tag.

Anyone know how to do this?