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