T
Tjerk Wolterink
In XHTML the entity nbsp stands for
A normal space like " " is also displayed as an normal space,
but multiple spaces like " " are interpreted as 1 space in the
xhtml page.
So there comes the in handy: with " " you have two
spaces. So with the nbsp entity you can create multiple spaces (in the display).
Now i have an xml file with entities,
i put it in an xsl-file that know xhtml entities.
But the output of this:
" "
is translated (correctly) to:
" "
But now the whole point of the entity in xhtml is gone!!
How do you solve this problem
A normal space like " " is also displayed as an normal space,
but multiple spaces like " " are interpreted as 1 space in the
xhtml page.
So there comes the in handy: with " " you have two
spaces. So with the nbsp entity you can create multiple spaces (in the display).
Now i have an xml file with entities,
i put it in an xsl-file that know xhtml entities.
But the output of this:
" "
is translated (correctly) to:
" "
But now the whole point of the entity in xhtml is gone!!
How do you solve this problem