xsl-list
[Top] [All Lists]

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

2006-10-25 07:29:01


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

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