xsl-list
[Top] [All Lists]

Re: Skipping Custom Tags

2005-12-09 07:58:38
On 12/8/05, Michael B Allen <mba2000(_at_)ioplex(_dot_)com> wrote:
If I have a custom tag and I do:

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

the tag <mytag> ends up in the output.

Did you create an identity template that copied everything?  Most
likely this is the case.  Make it explicit that you don't want to copy
it:

 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?

Depends on your case, personally I wouldn't even use that.  If it's
behavior you always want to occur, don't rely on the select, use
something like the below.

<xsl:template match="mytag">
<xsl:apply-templates />
</xsl:template>

That way, if you call <xsl:apply-templates /> somewhere you don't have
to worry about if there is a mytag element in there or not.

Jon Gorman


ps.  Folks on this list tend to prefer thinking about elements, not
tags, since while methods like SAX may manipulate the actual tags,
XSLT just sees the elements.

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