Hi,

> How do I display spaces between objects on the same line?
> eg.
> I have, in my XSLFO file.....
>
>       <xsl:value-of select="$MONTHSTR" />   <xsl:value-of select="$YEAR"
> />

the problem is, that your text-node between the tags contains
only whitespace, and is therefore stripped from the nodetree
as requested per xslt-spec.
Ich you want one space, you could use:

    <xsl:value-of select="$MONTHSTR" />
        <xsl:text> </xsl:text>
    <xsl:value-of select="$YEAR"/>

The content of <xsl:text> nodes is not stripped.

cu
Oliver

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to