2つのXSLTテンプレートがあり、それらを1つに組み合わせて、アルファベット順に並べ替える必要があります。
<xsl:template match="properties-for-sale">
<xsl:for-each select="entry">
<option value="{name}">
<xsl:value-of select="name"/>
</option>
</xsl:for-each>
</xsl:template>
<xsl:template match="properties-for-rent">
<xsl:for-each select="entry">
<option value="{name}">
<xsl:value-of select="name"/>
</option>
</xsl:for-each>
</xsl:template>
これはXSLTでどのように達成できますか?
助けてくれてありがとう!