[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: whitespace as a parameter to a template (replace l

Subject: Re: whitespace as a parameter to a template (replace linefeed with li nefeed tab)
From: Jeni Tennison <mail@xxxxxxxxxxxxxxxx>
Date: Thu, 31 May 2001 11:59:27 +0100
use replace to preserve whitespace
Hi James,

> I am making the call to my "do-replace" template as follows:
> <xsl:call-template name="do-replace">
>   <xsl:with-param name="text" select="$x"/>
>   <xsl:with-param name="replace">&#10;</xsl:with-param>
>   <xsl:with-param name="by">&#10;&#09;</xsl:with-param>
> </xsl:call-template>
>
> I suspect that the XML parser is converting my the whitespace in the
> "replace" and "by" parameters to a single space or an empty string.
> What is the proper way to preserve the white space in parameters
> being passed into a template?

You'll probably find it easiest to just use the select attribute to
set the parameter values rather than the content of the
xsl:with-param:

   <xsl:call-template name="do-replace">
      <xsl:with-param name="text" select="$x" />
      <xsl:with-param name="replace" select="'&#10;'" />
      <xsl:with-param name="by" select="'&#10;&#09;'" />
   </xsl:call-template>

You could equally use xsl:text in the content of the xsl:with-param,
as others have shown, but it's longer.
   
I hope that helps,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/



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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.