Re: [xsl] HTML Tags in XML

Subject: Re: [xsl] HTML Tags in XML
From: "Mukul Gandhi" <gandhi.mukul@xxxxxxxxx>
Date: Thu, 4 May 2006 17:49:54 +0530
On 5/4/06, andrew welch <andrew.j.welch@xxxxxxxxx> wrote:

<xsl:template match="info"> <xsl:copy-of select="."/> </xsl:template>

Should'nt this template be


<xsl:template match="info">
   <xsl:copy-of select="node()"/>
</xsl:template>

Otherwise <info> tags would also come in the output..

Regards,
Mukul

Current Thread