[Home] [By Thread] [By Date] [Recent Entries]
The xsl-list at mulberrytech.com is the best place for
getting XSLT coding help.
This one is a standard "modified identity transform".
Define one template rule that copies nodes:
<xsl:template match="*">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
and another that copies their children:
<xsl:template
match="somecategory">
<xsl:apply-templates/>
</xsl:template>
Michael Kay
http://www.saxonica.com/
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] |

Cart



