This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Carrying Namespaces through a XSL to XSL Transformation


>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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]