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

RE: semi-newbie question about escaping

Subject: RE: semi-newbie question about escaping
From: Jarno.Elovirta@xxxxxxxxx
Date: Tue, 15 Oct 2002 09:36:03 +0300
RE:  semi-newbie question about escaping
FAQ,

> The goal here was to output some non-breaking space entities in HTML 
> ( ) to denote indentation.

Why not the character itself?

> I finally got it to do what I wanted, thus:
> 
>     <xsl:choose>
>         <xsl:when test='$level=1'>
>         <xsl:text disable-output-escaping="yes"> 
> &#x26;nbsp;</xsl:text>
>         </xsl:when>
>         <xsl:when test='$level=2'>
>         <xsl:text disable-output-escaping="yes"> 
> &#x26;nbsp;&#x26;nbsp;</xsl:text>
>         </xsl:when>
>     </xsl:choose>
> 
> but I'm wondering if there isn't some easier way?  Thanks

Don't try to generate markup, but rather a tree and let serializer worry about how it will look. 

  <xsl:choose>
    <xsl:when test="$level = 1">&#xA0;</xsl:when>
    <xsl:when test="$level = 2">&#xA0;&#xA0;</xsl:when>
  </xsl:choose>

Cheers,

Jarno 

 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.