This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]