Re: [xsl] Suppressing element content

Subject: Re: [xsl] Suppressing element content
From: "Kirk Lowery" <empirical.humanist@xxxxxxxxx>
Date: Wed, 10 Sep 2008 17:56:18 -0400
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

Current Thread