|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: CDATA again
This is a FAQ.
> I need to produce output where some of the input node are inside a valid
> CDATA comment.
You can't have nodes inside a CDATA section, you can only have character
data (hence the name).
You want to generate
<targetGroup markup="yes">
<![CDATA[
<ul>
<li>PK Bestandskunden
(Postpaid+Prepaid)</li>
<li>Neukunden</li>
...
]]>
</targetGroup>
That is exactly the same thing as
You want to generate
<targetGroup markup="yes">
<ul>
<li>PK Bestandskunden
(Postpaid+Prepaid)</li>
<li>Neukunden</li>
...
</targetGroup>
It's just a syntactic variation just as <a x="2/> and <a x = '2' />
are syntactic variantions, that you don't directly control from XSLT.
Do you need a template mopde that writes out the character data
corresponding to the tags so
<xsl:template match="*" mode="x">
<xsl:text><</xsl:text>
<xsl:value-of select="name()"/>
<xsl:text><</xsl:text>
<xsl:apply-templates mode="x"/>
<xsl:text></</xsl:text>
<xsl:value-of select="name()"/>
<xsl:text><</xsl:text>
</xsl:template>
More complete examples, handling attributes etc are in the faq or
archives of this list.
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








