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]
Other format: [Raw text]

Re: iterating over unstructured data


<xsl:template match="root">
<table>
<xsl:for-each select="foo">
    <tr>
    <td><xsl:value-of select="." /></td>
    <td><xsl:value-of select="following-sibling::bar[1]" /></td>
    </tr>
</xsl:for-each>
</table>
</xsl:template>

Hope this helps.
--Jonathan



 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]