Subject: RE: How to stream HTML tags included in XML using XSL
From: "Medina, Edward" <emedina@xxxxxxx>
Date: Tue, 25 Apr 2000 14:11:55 -0400
|
:<xsl:template match="ulink">
: <a href="{@url}"><xsl:apply-templates/></a>
:</xsl:template>
Actually this last one, if you want to have
one style sheet an several different links
it won't work.
it would be
<xsl:template match="ulink" >
<A>
<xsl:attribute name="href" >
<xsl:value-of select="@your_attribute_here"/>
</xsl:attribute>
<xsl:apply-templates />
</A>
</xsl:template>
This way you can have several different links
in your XML and will be displayed by your
xsl.
XML
<ulink your_attribute_here="www.myhomepage.com">
HOME
</ulink>
Or
<ulink your_attribute_here="www.myhomepage.com"/>
but if you do this one don't forget to put
<xsl:apply-templates select="@your_attribute_here"/>
in your xsl.
Eddy
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|