I have the following two functions in XSLT 1.0
- ShortenDetail
- RemoveHTML
I am trying to first clean "Detail" column using RemoveHTML function and then I want to shorten it using ShortenDetail function.
This is how I am doing it but it is not working and giving error.
<xsl:call-template name="ShortenDetail">
<xsl:call-template name="RemoveHtml">
<xsl:with-param name="String" select="@Detail"/>
</xsl:call-template>
</xsl:call-template>
How do I use nested functions in XSLT?