Hi,

I have any XML-Inputstream containing CDATA-Sections (With HTML-Markup). When I directly serialize the generators output to HTML the HTML-Markup is applied. But as soon as I process the Data with an XSL-STylesheet, the Markup is Excaped (&lt,b> etc) and not applied anymore. I tried to declare the CDATA-ELements in xsl:output cdata-section-elements, but this doesn't seem to have any effect. Did anyone come across this problem and found a solution?

Here is the  Stylesheet I use for testing

<xsl:output method="xml" cdata-section-elements="TEASERBODY"/> <xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>


Thanks

Ole


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to