Hello,
I have got two rules:
<xsl:template match="templateparamlist">
<xsl:for-each select="param">
<xsl:value-of select="concat(., ',')" />
</xsl:for-each>
</xsl:template>
<xsl:template match="templateparamlist/param">
<xsl:value-of select="replace(type, 'typename', '')"/>
<xsl:if test="defname">
<xsl:text> </xsl:text>
<xsl:value-of select="defname"/>
<xsl:if test="defval">
<xsl:text>=</xsl:text>
<xsl:value-of select="defval"/>
</xsl:if>
</xsl:if>
</xsl:template>
How can I do this?
I need in the for-each concationation the call of the param node,
so that I concat the result of the <xsl:template match="templateparamlist/param">
How can I do this?
Thanks
Phil