xsl-list
[Top] [All Lists]

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

2008-08-30 02:12:09
"Ramkumar" == V Ramkumar 
<V(_dot_)Ramkumar(_at_)macmillansolutions(_dot_)com> 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

--~------------------------------------------------------------------
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>
--~--