RE: [xsl] Forming a Table

Subject: RE: [xsl] Forming a Table
From: Jarno.Elovirta@xxxxxxxxx
Date: Tue, 7 Aug 2001 15:08:05 +0300
<?xml version="1.0" encoding="ISO-8859-1"?> 
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:output method="text" />

<xsl:template match="XEX-data">
  <xsl:text>progressive_velocity  Corresponding time&#xA;</xsl:text>
  <xsl:for-each select="output">
    <xsl:value-of select="concat('        ', progressive_vel, '
', corresp_time, '&#xA;')" />
  </xsl:for-each>
</xsl:template>

</xsl:stylesheet>

Jarno

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


Current Thread