|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Copy element with attributes
Hi Diogo, > The xslt I use: > > <xsl:template match="body"> > <xsl:copy> > Prepend text > <xsl:apply-templates/> > Append text > </xsl:copy> > </xsl:template> > > removes body tag attributes. How can > I copy the body tag attributes at the > same time, so I can use something like: > > <xsl:template match="body/@text"> > <xsl:attribute name="text">#000000</xsl:attribute> > </xsl:template> > > to change attributes. I am not sure quite what you want. If you want to copy the attributes as is, you should do something like: <xsl:copy> <xsl:copy-of select="@*"/> Prepend text <xsl:apply-templates/> ... If you want to do something with the attributes, you should perhaps do something like: <xsl:copy> <xsl:apply-templates select="@*"/> ... Or you can do something like: <xsl:copy> <xsl:for-each select="@*"> <xsl:attribute name="name()"><!-- Do something here --></xsl:attribute> </xsl:for-each> Prepend text ... I do not know if this is what you want. Regards, Ragulf Pickaxe :-)
|
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








