Subject: RE: Replace Apostrophe Template -- very briefexample...not working
From: "Kathy Burke" <Kathy_Burke@xxxxxxxxx>
Date: Fri, 10 Oct 2003 15:42:29 -0400
|
Thanks, this is just what I needed as well.
Have a great weekend all.
Kathy
-----Original Message-----
From: J.Pietschmann [mailto:j3322ptm@xxxxxxxx]
Sent: Friday, October 10, 2003 3:32 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: Replace Apostrophe Template -- very brief
example...not working
Kathy Burke wrote:
> I did TRY calling it, but must not have done it correctly. Were would I
call
> it from, Tom? I would like it to apply to all output content.
Try a template for text:
<xsl:template match="text()">
<xsl:call-template name="escape-apos">
<xsl:with-param name="string" select="."/>
</xsl:call-template>
</xsl:template>
Change your template to
<xsl:template name="escape-apos" match="text()">
<xsl:param name="string" select="."/>
...
should have the same effect (beware, untested).
J.Pietschmann
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|