包详细信息

pretty-xml

sirreal109MIT1.2.1

Pretty print XML on the command line.

xml, cli, formatting

自述文件

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