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: Strip CRLF/newline only


Peter,

You can also throw away just the line feeds by massaging your template 
matching text nodes:

<xsl:template match="text()">
   <xsl:value-of select="translate(., '&#10;', '')"/>
</xsl:template>

and to limit the behavior only to certain elements, matching on 
"name/text()", etc.

But I don't think that's as good an option as the xsl:strip-space, since 
space characters (#32) may still be floating around.

Cheers,
Wendell

At 04:32 PM 10/24/01, you wrote:
>Well, see my other replies about only wanting this in a particular template,
>but knowing that only LF's are passed means I might be able to just watch
>for them in the extension function...


======================================================================
Wendell Piez                            mailto:wapiez@mulberrytech.com
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
   Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================


 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]