|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: XSLT: Does an element know about its type?
> <xsl:template match="river|lake|sea|island|mountain|desert">
> < this tag should be the element's tag, i.e, river or lake or ... >
> <xsl:copy-of select=" ... several properties ..."/>
> ... some more things ...
> </ suitable close-tag >
> </xsl:template>
The name() function will tell you the element type, but
for what you want to do, the xsl:copy instruction is more
appropriate. Either of these will do the trick:
<xsl:template match="river|lake|sea|island|mountain|desert">
<xsl:copy>
<!-- element attributes and contents go here -->
</xsl:copy>
</xsl:template>
<xsl:template match="river|lake|sea|island|mountain|desert">
<xsl:element name="name()">
<!-- element attributes and contents go here -->
</xsl:element>
</xsl:template>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
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
|

Cart








