Re: [xsl] Filter content of a node without the content of his child node?

Subject: Re: [xsl] Filter content of a node without the content of his child node?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 25 Oct 2006 15:28:33 +0100
replace

					<xsl:value-of select="Frage"/>
					

by

<xsl:apply-templates select="Frage"/>

then just have templates matching elements (not tags0 that you want to
transform.

You want to transform Fixed to nothing so add

<xsl:template match="Fixed"/>

(You could probably simplify the rest of your stylesheet by using
matching templates rather than named templates as well)

David

Current Thread