Subject: RE: inserting XML from the nodeset
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Sun, 30 Oct 2005 20:44:33 -0000
|
Just use xsl:copy-of instead of xsl:value-of
Michael Kay
http://www.saxonica.com/
> -----Original Message-----
> From: jp [mailto:jpkeisala@xxxxxxxxx]
> Sent: 30 October 2005 19:29
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: inserting XML from the nodeset
>
> Hi,
>
> I would like to embed XML from nodeset as it is into a
> transformation how can I do this?
>
> For example if I have:
> <?xml version="1.0" encoding="UTF-8" ?>
> <xsl:stylesheet version="1.0"
> xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
> <xsl:variable name="myXML">
> <myXML>Hello</myXML>
> </xsl:variable>
> <xsl:template match="/">
> <data>
> <xsl:value-of select="$myXML"/>
> </data>
> </xsl:template>
> </xsl:stylesheet>
>
> I would like output:
> <data><myXML>Hello</myXML></data>
>
> This should be quite obvious but I can't figure out
> how to do this. :-/
>
> -jp
>
>
>
>
> __________________________________
> Yahoo! Mail - PC Magazine Editors' Choice 2005
> http://mail.yahoo.com
|