1.2.1 • Published 8 years ago

pretty-xml v1.2.1

Weekly downloads
28
License
MIT
Repository
github
Last release
8 years ago

pretty-xml

Utility for pretty formatting XML

Just a simple wrapper around pretty data xml by vkiryukhin.

Usage

Basic

echo '<some-xml><some more="here">xml</some></some-xml>' | pretty-xml

Output:

<some-xml>
  <some more="here">xml</some>
</some-xml>

Also allows minification by --minify flag

echo '<some-xml>
  <some more="here">xml</some>
</some-xml>' | pretty-xml --minify

Output:

<some-xml><some more="here">xml</some></some-xml>

Installation

npm install -g pretty-xml
1.2.1

8 years ago

1.2.0

8 years ago

1.1.0

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.0.1

10 years ago