RE: [xsl] Inserting spaces in my FO Style Sheet

Subject: RE: [xsl] Inserting spaces in my FO Style Sheet
From: DPawson@xxxxxxxxxxx
Date: Thu, 21 Jun 2001 08:30:50 +0100
> I tried to insert a space in my FO Style Sheet using the 
> suggestion below
> and it doesn't work.
> 
> If I insert a character and then a space <xsl:text> 1</xsl:text> - it
> works - but not the space alone.

I generally have

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xsl:stylesheet [
  <!ENTITY nbsp "&#160;">
  <!ENTITY sp   "<xsl:text> </xsl:text">
]>

as the top end of my stylesheet, then I can use

<xsl:template match="whatever">
  stuff&nbsp;more stuff

to get a simple seperator.

Perhaps for fo, the equivalent would be

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xsl:stylesheet [
  <!ENTITY sp "<fo:inline>&nbsp;</fo:inline>">
]>

HTH DaveP

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread