RE:

Subject: RE:
From: Leigh Dodds <ldodds@xxxxxxxxxxx>
Date: Thu, 11 Nov 1999 14:47:26 -0000
David Hemmingson writes...
>Hi!
>I need to do something like this:

This stylesheet :

<xsl:stylesheet
  version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:template match="doc">

   <xsl:element name="card">
      <xsl:attribute name="id">First Card</xsl:attribute>
      <xsl:attribute name="title"><xsl:value-of
select="//title/text()"/></xsl:attribute>
   </xsl:element>

</xsl:template>

</xsl:stylesheet>

Given:

> <?xml version = "1.0" ?>
> <doc>
> 	<title>The title</title>
> </doc>
>

Produces:

<card id="First Card" title="The title"/>

There are probably more elegant ways to do it, but it works.
The select expression should probably be improved to make
it more specific.

L.


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread