[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] forcing non breaking spaces?


Subject: Re: [xsl] forcing non breaking spaces?
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Mon, 24 Jul 2006 14:05:15 -0400

At 2006-07-24 13:59 -0400, Steve wrote:
Is there some more elegant way of making sure a space gets added after
every value so that, if there is no value associated with it, there is
still a space?

More elegant than going
<xsl:text disable-output-escaping="yes">&amp;#160;</xsl:text> crazy, that
is.

That is an inappropriate use of d-o-e= in my opinion.

When I need to do the same I do the following:

<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp "&#160;"> <!--known for HTML output, not in XML-->
]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">
<xsl:output method="html"/><!--use hardwired browser entities-->
<xsl:template match="/">                      <!-- root rule -->
 ...
 <td>&nbsp;</td>
 ...

I hope this helps.

. . . . . . . . . . . Ken

--
UBL/XML/XSLT/XSL-FO training:         Verx, Denmark 06-09-25/10-06
World-wide corporate, govt. & user group UBL, XSL, & XML training.
G. Ken Holman                 mailto:gkholman@xxxxxxxxxxxxxxxxxxxx
Crane Softwrights Ltd.          http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0    +1(613)489-0999 (F:-0995)
Male Cancer Awareness Aug'05  http://www.CraneSoftwrights.com/s/bc
Legal business disclaimers:  http://www.CraneSoftwrights.com/legal


Current Thread
  • [xsl] forcing non breaking spaces?
    • Steve - Mon, 24 Jul 2006 13:59:00 -0400
      • Message not available
        • G. Ken Holman - Mon, 24 Jul 2006 14:05:15 -0400 <=
          • Steve - Wed, 26 Jul 2006 16:22:40 -0400
      • Michael Kay - Mon, 24 Jul 2006 19:09:55 +0100
        • Steve - Mon, 24 Jul 2006 14:20:17 -0400
      • <Possible follow-ups>
      • cknell - Wed, 26 Jul 2006 16:57:47 -0400
Keywords