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


Andrew Welch wrote:
> 
> Hi,
> 
> This may be a faq, but my searches have so far been unproductive.

The way I do this is:

<xsl:for-each select="foo">
 <fo:table-cell>
  <xsl:apply-templates/>
 </fo:table-cell>
 <fo:table-cell>
  <xsl:apply-templates "following-sibling::bar[1]"/>
 </fo:table-cell>
</xsl:for-each>

You might also be able to do it by doing apply-templates select="foo"
and
then doing the following-sibling::bar[1] in foo's template, but I
haven't tried it.

Cheers,

Eliot Kimber
ISOGEN International, LLC

 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]