反復する構造を作成したいのですが、その内容は既存のノードでなければなりません。このような:
<xsl:variable name='my_structure'>
<rows-to-add>
<row>existing-node-with-a-specific-path</row>
<row>existing-node-with-a-specific-path</row>
</rows-to-add>
<rows-to-add>
<row>existing-node-with-a-specific-path</row>
<row>existing-node-with-a-specific-path</row>
<row>existing-node-with-a-specific-path</row>
</rows-to-add>
</xsl:variable>
そのため、$my_structre を反復処理して、いくつかのロジックを適用できます。
それは可能ですか?