Re: [xsl] Using xsl:iterate inside <xsl:for-each-group> xslt 3.0

Subject: Re: [xsl] Using xsl:iterate inside <xsl:for-each-group> xslt 3.0
From: "Martin Honnen martin.honnen@xxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 13 Aug 2020 17:26:15 -0000
On 13.08.2020 19:15, Terry Ofner tdofner@xxxxxxxxx wrote:

Here then is the same section with the <xsl:iterate> added:

<write_choices>
   <xsl:for-each-group select="$myDir/p/*"
group-starting-with="span[@class='letter']">

<xsl:iterate select=".">

Inside of any `for-each-group`, the context item `.` is the first item of `current-group()` so using a single item in the select expression of `iterate` is likely not what you want.



I haven't grasped what you need instead.

Current Thread