XSLT string with HTML entities - How can I get it to render as HTML?
- by Kache4
I'm completely new to using XSL, so if there's any information that I'm neglecting to include, just let me know.
I have a string in my XSLT file that I can display like this:
<xsl:value-of select="@Description/>
and it shows up, rendered in a browser like:
<div>My text has html entities within it</div> <div>This includes quotes, like "Hello World" and sometimes whitespaces. </div>
What can I do to get this string rendered as html, so that <div></div> results in newlines, " gives me ", and   gives me a space?
I could elaborate on things I've already tried that haven't worked, but I don't know if that's relevant.