XSLT string with HTML entities - How can I get it to render as HTML? -


I'm completely new to using XSL, so if there is any information that I neglect to include I am here, just tell me.

I have a string in the XSLT file that I can display like this:

  & lt; Xsl: Select value = "@ description />  

and it appears rendered in a browser, such as:

  & lt ; Div & gt; I can not do anything about HTML entities in the text. & Lt; / div & gt; & lt; div & gt; contains quotations such as & amp; quot; Hello World & ; Quot; and sometimes white space. Amp;  

What can I do to provide this string as html, So that

gt; & lt; / div & gt; results Newline, & amp; q Uot; me ", and & amp; Nbsp; gives me a place?

I can expand on those things which I have already tried which are not working, but I do not know that it is relevant.

I think you want to set the following attribute like this:

  & lt; Xsl: Select value = "@ description" disable-output-escaping = "yes" />  

Comments