Re: [xsl] Commented contents not considered for XSLT Transformation.

Subject: Re: [xsl] Commented contents not considered for XSLT Transformation.
From: Colin Paul Adams <colin@xxxxxxxxxxxxxxxxxx>
Date: Sat, 30 Aug 2008 08:11:47 +0100
>>>>> "Ramkumar" == V Ramkumar <V.Ramkumar@xxxxxxxxxxxxxxxxxxxxxx> writes:

    Ramkumar> Hi list, I'm doing XSLT(2.0) Transformation XML 2 XML
    Ramkumar> using saxon9. In my input XML have some block of text
    Ramkumar> commented, so it's not transformed/coming in output even
    Ramkumar> I match the comment. Please suggest.

    Ramkumar> In my XSLT, <xsl:template
    Ramkumar> match="comment()"><xsl:apply-templates/></xsl:template>

Your template is not doing anything with the matched comment. Instead
of xsl:apply-templates (which will do nothing), you probably want to
do xsl:copy.
-- 
Colin Adams
Preston Lancashire

Current Thread