|
[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
[Recent Entries]
[Reply To This Message]
Re: Replace multiple xsl:template with one
Subject: Re: Replace multiple xsl:template with one
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Fri, 08 May 2009 12:47:27 +0200
|
mIHAIL {ESTAKOW wrote:
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>
<xsl:template match="form | fieldset | table | tr | td">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
--
Martin Honnen
http://msmvps.com/blogs/martin_honnen/
|
PURCHASE STYLUS STUDIO ONLINE TODAY!
Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!
Download The World's Best XML IDE!
Accelerate XML development with our award-winning XML IDE - Download a free trial today!
Subscribe in XML format
| RSS 2.0 |
|
| Atom 0.3 |
|
|