This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Inserting spaces in my FO Style Sheet



> 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]