xml-prettify alternatives and similar packages
Based on the "XML" category.
Alternatively, view xml-prettify alternatives based on common mentions on social networks and blogs.
-
tagsoup
Haskell library for parsing and extracting information from (possibly malformed) HTML/XML documents -
xml-conduit-decode
Support for historical cursors & decoding on top of xml-conduit. Created in the sprit of scalaz-xml.
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of xml-prettify or a related project?
README
xml-prettify
A pretty printer / indentation tool for generic XML.
Installation
There are no prerequisites other than GHC (>=6.10).
Using cabal-install
$ cabal install xml-prettify
From source archive
$ tar xzvf xml-prettify-0.0.1.tar.gz
$ cd xml-prettify-0.0.1
$ ghc --make Setup.hs
$ ./Setup configure
$ ./Setup build
$ ./Setup install
Usage
$ cat ugly.xml
<Configuration><UPnP><UDN><MediaRenderer>6c36e3a3-xxxx=4e1c-ac5f-506e515f0491</MediaRenderer></UDN><MythFronten><DefaultBackend><DBHostName>localhost</DBHostName><DBUserName>mythtv</DBUserName><DBPassword>xxxxxxx</DBPassword><DBName>mythconverg</DBName><DBPort>0</DBPort></DefaultBackend></MythFrontend></UPnP></Configuration>
$ xml-prettify ugly.xml
<Configuration>
<UPnP>
<UDN>
<MediaRenderer>
6c36e3a3-xxxx=4e1c-ac5f-506e515f0491
</MediaRenderer>
</UDN>
<MythFronten>
<DefaultBackend>
<DBHostName>
localhost
</DBHostName>
<DBUserName>
mythtv
</DBUserName>
<DBPassword>
xxxxxxx
</DBPassword>
<DBName>
mythconverg
</DBName>
<DBPort>
0
</DBPort>
</DefaultBackend>
</MythFrontend>
</UPnP>
</Configuration>
Contact
For questions, comments and patches, email me at [email protected].