RE: [xsl] template value input

Subject: RE: [xsl] template value input
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Wed, 17 Sep 2003 19:35:34 +0100
In XSLT 1.0 the only way you can "capture" the outcome of a a template
is in an RTF-valued variable:

<xsl:variable name="rtf">
 <xsl:call-template ..
</xsl:variable>

<xsl:with-param name="text" select="$rtf"/>

But you can also do it directly:

<xsl:with-param name="text">
 <xsl:call-template ..
</xsl:with-param>

Michael Kay

> -----Original Message-----
> From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx 
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of 
> clemens schrenk
> Sent: 17 September 2003 17:17
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: [xsl] template value input
> 
> 
> how can i insert the outcome of a template into another 
> template at the place of the word space ? <xsl:with-param 
> name="text" select="space"/>
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 


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


Current Thread