RE: [xsl] Losing white space when identity transform

Subject: RE: [xsl] Losing white space when identity transform
From: "Karl J. Stubsjoen" <karl@xxxxxxxxxxxxx>
Date: Thu, 18 Mar 2004 08:16:41 -0700
Jeni:  I do not have a template that would normalize-space.  I do not see
that anywhere.
Michael:  I am using MSXML2.

Wow!  Just threw in:

<xsl:template match="text()">
  <xsl:value-of select="." />
</xsl:template>

And I got my spaces back.  Go figure.
Correction!! Jeni, you were right, I do have the template:

<xsl:template match="text()">
  <xsl:value-of select="normalize-space(.)"/>
</xsl:template>

The above template rule is over-riding the below, which comes as part of a
library of XSLT template rules that I include for all of my web projects.
I'm really not sure why I have that in there.  I think I will remove it.

Karl

P.S.  I love it when you guys are right


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


Current Thread