Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to decode a html string using xslt

I am trying to style an rss feed using xslt. I want to display an image that is stored in the tag on the feed. The problem is it is encoded to display as text on the page instead of being rendered. The following is an example of part of the string.

1). <description>&lt;img src="http&amp;#58;&amp;#47;&amp;#47;buavhw.blu.livefilestore.com&amp;#47;y1ppCokLxFJSG2cmyPdvg...

I had to add extra coding to the string above to get it to appear properly here. The string below is how it appears when I paste it directly into the text box.

2). <description><img src="http&#58;&#47;&#47;buavhw.blu.livefilestore.com&#47;y1ppCokLxFJSG2cmyPdvg...

If I copy and paste it again from the preview window it only then becomes the following string.

3). <description><img src="http://buavhw.blu.livefilestore.com/y1ppCokLxFJSG2cmyPdvg...

like image 276
John ClearZ Avatar asked Jun 13 '10 04:06

John ClearZ


1 Answers

I'd suggest you to use an especial property in xsl:value=of tag and that is disable-output-escaping="yes" use like this:

<xsl:value-of select="description" disable-output-escaping="yes"/>
like image 197
J.Mohammadi Avatar answered Nov 03 '22 07:11

J.Mohammadi