xsl-list
[Top] [All Lists]

Re: XSLT: Are XML Comments parseable?

2005-09-20 05:40:12
Tempore 14:27:31, die 09/20/2005 AD, hinc in 
xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com scripsit Khorasani, Houman 
<houman_khorasani(_at_)csgsystems(_dot_)com>:

My XML file:

<?xml version="1.0" encoding="UTF-8"?>
<!--pear-->
<fruit>apple</fruit>


My XSLT:

        <xsl:template name="GetComment" match="comment()">
                <c>
                        <xsl:value-of select="."/>
                </c>
        </xsl:template>


I would like to get only <c>pear</c> as output.

However I get as output the following:

<c>pear</c>apple


How do I fix that?

Add:

<xsl:template match="*"/>

regards,
--
Joris Gillis (http://users.telenet.be/root-jg/me.html)
Don't send spam. I don't like it and it is illegal.

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



<Prev in Thread] Current Thread [Next in Thread>