Subject: RE: Suppressing element content
From: "Scott Trenda" <Scott.Trenda@xxxxxxxx>
Date: Wed, 10 Sep 2008 17:07:28 -0500
|
http://www.w3.org/TR/xslt#built-in-rule
~ Scott
-----Original Message-----
From: Kirk Lowery [mailto:empirical.humanist@xxxxxxxxx]
Sent: Wednesday, September 10, 2008 4:56 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: Suppressing element content
On Wed, Sep 10, 2008 at 5:50 PM, Scott Trenda <Scott.Trenda@xxxxxxxx>
wrote:
> You need to override the built-in templates. And your initial template
> is the same as the built-in template, so you don't need it.
>
> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
> version="1.0">
> <xsl:output method="text" />
> <xsl:template match="Node[@Cat='x']">
> <xsl:value-of select="@Lemma" />
> </xsl:template>
> <xsl:template match="@*|text()" />
> </xsl:stylesheet>
That did the trick! Thanks!
Could you point me to something that explains this? There are one or
two more built-in templates, IIRC, and I'd like to get a handle on how
it works.
Kirk
|