xsl-list
[Top] [All Lists]

Re: [xsl] forcing non breaking spaces?

2006-07-24 11:07:41
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:         Vårø, Denmark 06-09-25/10-06
World-wide corporate, govt. & user group UBL, XSL, & XML training.
G. Ken Holman                 mailto:gkholman(_at_)CraneSoftwrights(_dot_)com
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


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--