[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Problem with <dd> and </dd> in output

Subject: Problem with <dd> and </dd> in output
From: "Robert Nicholson" <robert@xxxxxxxxxxxx>
Date: Fri, 16 Feb 2001 14:12:50 -0800
dd select problem
Why is the resulting html missing the closing </dd>?

<xsl:template name="separated-list">
	<xsl:param name="nodes"/>
	<xsl:param name="separator"/>
	<xsl:for-each select="$nodes">
		<xsl:value-of select="."/>
		<xsl:if test="position() != last()">
			<xsl:copy-of select="$separator"/>
		</xsl:if>
	</xsl:for-each>
</xsl:template>

<xsl:template match="preferred-locations">
<p>
<dl>
<dt>
Preferred Locations:
</dt>
<dd>
<xsl:call-template name="separated-list">
	<xsl:with-param name="nodes" select="preferred-location"/>
	<xsl:with-param name="separator">, </xsl:with-param>
</xsl:call-template>
</dd>
</dl>
</p>

Resulting HTML looks like this

Preferred Locations:
<dd>Seattle/Bellevue, London. UK, Melbourne. Australia, Europe,
Bangkok</dl></p>

I don't understand what happened to the closing </dd> tag.


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.