xsl-list
[Top] [All Lists]

Re: [xsl] Removing all line breaks in text nodes

2006-09-09 15:48:29

you don't appear to apply normalize-space anywhere, simplest being
something like

changing

        <xsl:template match="text()[normalize-space(.)='']"/>

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

or you might (or might not) want to re-insert a leading or trailing
space as shown in teh code fragments at DaveP's site that you quoted.

David

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--