[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

[xsl] Skipping Custom Tags


Subject: [xsl] Skipping Custom Tags
From: Michael B Allen <mba2000@xxxxxxxxxx>
Date: Thu, 8 Dec 2005 23:54:57 -0500

If I have a custom tag and I do:

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

the tag <mytag> ends up in the output. Frequently this is not what I
want. Rather I want to skip that tag and apply-templates on everthing
enclosed *within* that tag. For that, adding /* appears to work:

  <xsl:apply-templates select="mytag/*"/>

Is this the proper expression or should it be "@*|node()" or what?

Mike


Current Thread