Re: [xsl] XSLT Whitespace ???

Subject: Re: [xsl] XSLT Whitespace ???
From: "Joerg Heinicke" <joerg.heinicke@xxxxxx>
Date: Tue, 12 Feb 2002 01:43:02 +0100
> How do I insert Whitespace?

&nbsp; in HTML is &#160; in XML

<xsl:template match="Quote"> (You don't need '//' in match-pattern).
    <xsl:value-of select="@date"/>
    <xsl:text>&#160;&#160;&#160;</xsl:text>
    <xsl:value-of select="."/>  
 </xsl:template>


Joerg


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


Current Thread