Re: [xsl] Nested Tags

Subject: Re: [xsl] Nested Tags
From: Michael Hanisch <mhanisch@xxxxxxxxxx>
Date: 14 Aug 2002 14:29:55 +0200
On Wed, 2002-08-14 at 13:38, Mark Micallef wrote:
> Hi All,

Hi.

>   <description>This text describes the <link target="www.xyz.com"
> text="procedure"/> involced in doing something.</description>
> 
>   I need to display the text withing the <description> tags and also to add
> an html hyperlink whereever I encounter the <link> tag.

> Any ideas?

<xsl:template match="description">
  <p>
    <xsl:apply-templates/>
  </p>
</xsl:template>

<xsl:template match="link">
  <a>
    <xsl:attribute name="href" select="@target"/>
    <xsl:value-of select="@text"/>
  </a>

Should do what you want...

-- 
--                                                                    --
Michael Hanisch                                      mhanisch@xxxxxxxxxx
Red Hat - RH Interchange Inc., Orleansstrasse 4,  D-81669 Munich/Germany
phone: +49 (0)89 206058-53                      fax: +49 (0)89 206058-88


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


Current Thread