RE: Applying templates within a variable

Subject: RE: Applying templates within a variable
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Tue, 14 Mar 2000 10:33:26 -0000
I can't see any reason why this shouldn't work. Which processors have you
tried?

Mike Kay

> Any other suggestions would be very much appreciated - here's 
> a simplified example:
> 
> <xsl:template match="test1">
>    <xsl:variable name="var1">
>      <xsl:call-template name="foo"/>   <!-- output copied properly -->
>      <xsl:value-of select="test2"/>    <!-- output copied properly -->
>      <xsl:apply-templates/>            <!-- has no effect !!????   -->
>    </xsl:variable>
>    <xsl:call-template name="fontstyle">
>      <xsl:with-param name="param1" select="$var1"/>
>    </xsl:call-template>
> </xsl:template>
> 
> <xsl:template name="fontstyle">
>    <xsl:param name="param1"/>
>    <B><xsl:copy-of select="$param1"/></B>
> </xsl:template>
> 


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread