Re: [xsl] XSLT: Are XML Comments parseable?

Subject: Re: [xsl] XSLT: Are XML Comments parseable?
From: "Joris Gillis" <roac@xxxxxxxxxx>
Date: Tue, 20 Sep 2005 14:40:12 +0200
Tempore 14:27:31, die 09/20/2005 AD, hinc in xsl-list@xxxxxxxxxxxxxxxxxxxxxx scripsit Khorasani, Houman <houman_khorasani@xxxxxxxxxxxxxx>:

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.

Current Thread