Re: [xsl] Replace multiple xsl:template with one

Subject: Re: [xsl] Replace multiple xsl:template with one
From: Andrew Welch <andrew.j.welch@xxxxxxxxx>
Date: Fri, 8 May 2009 11:46:21 +0100
<xsl:template match="form | fieldset | table | tr | td">
  <xsl:copy>
    <xsl:copy-of select="@*"/>
    <xsl:apply-templates/>
  </
</

2009/5/8 mIHAIL {ESTAKOW <mike.shestakov@xxxxxxxxx>:
> I have a bunch of lines in my XSL file. They look very similar, and I
> want to replace these lines with one. Is it possible?
>
> <xsl:template match="form"><form><xsl:copy-of
> select="@*"/><xsl:apply-templates/></form></xsl:template>
> <xsl:template match="fieldset"><fieldset><xsl:copy-of
> select="@*"/><xsl:apply-templates/></fieldset></xsl:template>
> <xsl:template match="table"><table><xsl:copy-of
> select="@*"/><xsl:apply-templates/></table></xsl:template>
> <xsl:template match="tr"><tr><xsl:copy-of
> select="@*"/><xsl:apply-templates/></tr></xsl:template>
> <xsl:template match="td"><td><xsl:copy-of
> select="@*"/><xsl:apply-templates/></td></xsl:template>
>
> Thanks a lot!
>


--
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/

Current Thread