Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use <![CDATA[]]> in XSLT?

Tags:

xml

xslt

I have use in XSLT variable look like:

<xsl:variable name="ShortDescription" select="str[@name = 'ShortDescription']"/>
<!--Short Description field-->
       <xsl:if test="$ShortDescription !=''">

        <shortdescription><![CDATA[ <xsl:value-of select="$ShortDescription" disable-output-escaping="no"/> ]]></shortdescription>

       </xsl:if>

But its display as a text not a value of $ShortDescription variable and output look like:

<shortdescription>
&lt;xsl:value-of select="$ShortDescription" disable-output-escaping="no"/&gt;
</shortdescription>

expected output look like:

<shortdescription>
<![CDATA[Maximum Power: 520 W<br/>+12V Rails: Dual<br/>]]>
</shortdescription>

How to use <![CDATA[]]> in XSLT?

like image 791
Jatin Gadhiya Avatar asked Aug 20 '14 08:08

Jatin Gadhiya


1 Answers

XSLT is XML so of course you can use a CDATA section in XSLT code, as you have done. However it rather seems you want the output of the XSLT code to contain a CDATA section for the shortdescription contents, in that case you need

<xsl:output method="xml" cdata-section-elements="shortdescription"/>

And the XSLT would simply stay as

<shortdescription><xsl:value-of select="$ShortDescription"/></shortdescription>
like image 160
Martin Honnen Avatar answered Oct 12 '22 13:10

Martin Honnen