[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] Fwd: xml/xslt line break
Subject: Re: [xsl] Fwd: xml/xslt line break
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Sun, 20 Jul 2008 14:23:27 +0200
|
Taly wrote:
what I need to change is something from xsl I am reading using xpath -
I called it here :txtTargetTextforchange
<xsl:value-of select="./txtTargetTextforchange" /> 
If you want to apply that named template to that element then use
<xsl:call-template name="substitute">
<xsl:with-param name="string" select="txtTargetTextforchange"/>
</xsl:call-template>
--
Martin Honnen
http://JavaScript.FAQTs.com/
|