Here is my line of code
<xsl:template name="Reports">
    <xsl:apply-templates select="/result/content/row"/>
 </xsl:template>
and this is the data in xml
<description>
 <![CDATA[ test test ]]>
</description>
tha data in xml is
test
test
How can i escape the new line in xslt?
 
    