I am using XSLT to convert XML to HTML. I am having trouble figuring out how to deal with embedded XML nodes for formatting. For example, let\'s say I have the XML element:<
You should use 'disable-output-escaping' attribute. The general format of element is:
'disable-output-escaping' is optional. "yes" indicates that special characters (like "<") should be output as is. "no" indicates that special characters (like "<") should be output as "<". Default is "no".
Therefore just change your code to: