Re: [xml-dev] Sharing Techniques: White Spaces in HTML pages by XSLT

From
K. Ari Krupnikov <>
To
Liping Li <>
Date
2001-11-26T00:58:33Z
ID
<>
Thread
Re: [xml-dev] Sharing Techniques: White Spaces in HTML pages by XSLT
Liping Li wrote:
> 
> I came up [with]
> several ways to insert white spaces into HTML pages
> transformed from XML document by XSLT.

> http://www.mycgiserver.com/~~lisali/papers/paper.htm

Why not simply use &#xa0; as Mike Kay suggests on p. 135 of his XSLT
Reference? And if you really want a general entity named nbsp, simply
say as the HTML DTD does:

<!DOCTYPE xsl:stylesheet [<!ENTITY nbsp "&#160;">]>

Ari.