|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: How to stream HTML tags included in XML using XSL
:<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
|
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








