[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: pretty-printing XML

Subject: Re: pretty-printing XML
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Wed, 26 Mar 2003 22:26:10 +0000
python xml pretty print
Mike Brown wrote:
>>> In particular, my XML has lots of very long comment lines, which I
>>> would like to be wrapped to a sensible line length, and indented
>>> with a hanging indent like this:
>>>
>>>   <!-- blah blah
>>>     blah blah
>>>     blah blah -->
[snip]
> Nevertheless, it is possible to devise a word-wrapping algorithm in
> pure XSLT, with hanging indents, even. It would be very slow and
> about 200 lines long, though. We used to use something like this to
> generate documentation, but I recently switched us to using an
> extension function that uses a Python 1-liner to do most of the
> work.

For what it's worth, XSLT 2.0 makes this a whole lot easier with its
regular expression support. For example, you could use:

<xsl:template match="comment()">
  <xsl:text>&lt;!-- </xsl:text>
  <xsl:analyze-string select="normalize-space(.)"
                      regex=".{{1,69}}(\s|$)">
    <xsl:matching-substring>
      <xsl:if test="position() != 1"><xsl:text>     </xsl:text></xsl:if>
      <xsl:value-of select="." />
      <xsl:text>&#xA;</xsl:text>
    </xsl:matching-substring>
  </xsl:analyze-string>
  <xsl:text>     --></xsl:text>
</xsl:template>

[Note the doubling of the {}s in the regex attribute because it's an
attribute value template; that's caught me out twice today!]

You could use something more subtle than normalize-space() to preserve
*some* of the spacing within the comment but not others.

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.