xsl-list
[Top] [All Lists]

[xsl] Wrapping content in a CDATA tag

2009-02-13 11:29:35
I have an XSLT that is changing element names to match a specific schema. The schema requires that I wrap the content in a CDATA tag. Can anyone explain to me how I would do that? Below is one of the template rules that I need to do this with:

<xsl:template match="head">
       <field name="title">
           <xsl:apply-templates/>
       </field>
   </xsl:template>


Original XML looks like this:

<title>Hello World</title>


Final XML needs to look like this
<field name="title">
<![CDATA[Hello World]]>
</field>



chad


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--