RE: [xsl] Re: Identifying Existence of Attributes

Subject: RE: [xsl] Re: Identifying Existence of Attributes
From: "bryan" <bry@xxxxxxxxxx>
Date: Mon, 17 Mar 2003 16:43:18 +0100

>I'm hoping there's a more elegant way to do it using a one-line 
>apply-templates or call-templates instead of three or more if statement

>lines

<xsl:template match="tag">
<xsl:apply-templates select="@*" mode="atts"/>
</xsl:template>
<xsl:template match="@*" mode="atts">
<xsl:value-of select="local-name()"/>=<xsl:value-of select="."/>

</xsl:template>

with <tag indent="5"/>

should return indent=5


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread