Re: [xsl] Carrying Namespaces through a XSL to XSL Transformation

Subject: Re: [xsl] Carrying Namespaces through a XSL to XSL Transformation
From: "Kevin McCarthy" <Kevin@xxxxxxxxxxxx>
Date: Wed, 27 Dec 2000 11:13:53 -0800
>Kevin:
>
> Do you by chance have the matching template to close this tag?


Sure thing!
-Kevin

<xsl:call-template name="renderXSLNodeEnd">
    <xsl:with-param name="tag">stylesheet</xsl:with-param>
</xsl:call-template>

<!--
 renderXSLNodeEnd:
  renders the closing xsl:$tag tag
-->
<xsl:template name="renderXSLNodeEnd">
<xsl:param name="tag"/>
<xsl:text disable-output-escaping="yes">
&#60;</xsl:text>/xsl:<xsl:value-of select="$tag" /><xsl:text
disable-output-escaping="yes">&#62;</xsl:text>
</xsl:template>




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


Current Thread