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]
Other format: [Raw text]

Re: stripping leading and trailing newlines from xml


Aparna Konduri wrote:
> Is there a way to just strip leading and trailing newlines from 
> xml using xsl or javascript?

XSLT has somewhat unintuitive rules for how it handles whitespace
and newlines. You did not provide an example of what you want to
accomplish, so I guess you meant extraneous whitespace.

An identity transform as discussed in the XSLT spec under "Copying"
(xsl:copy), with the addition of

  <xsl:strip-space elements="*"/>
  <xsl:output method="xml" indent="no"/>

is probably what you want.

   - Mike
____________________________________________________________________________
  mike j. brown                   |  xml/xslt: http://skew.org/xml/
  denver/boulder, colorado, usa   |  resume: http://skew.org/~mike/resume/

 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]