Created
April 4, 2012 02:24
-
-
Save musubu/2297179 to your computer and use it in GitHub Desktop.
pretty print xml by xmllint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ node build-opds.js | |
<?xml version="1.0" encoding="UTF-8"?> | |
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/terms/" xmlns:opds="http://opds-spec.org/2010/catalog"><id>urn:uuid:433a5d6a-0b8c-4933-af65-4ca4f02763eb</id><title>feed title</title><updated>2010-01-10T10:01:11Z</updated><author><name>Feed author</name><uri>http://opds-spec.org</uri><email>[email protected]</email></author><link rel="self" type="application/atom+xml;profile=opds-catalog;kind=acquisition" href="/opds-catalogs/unpopular.xml"/><entry/></feed> | |
$ node build-opds.js | xmllint --format - | |
<?xml version="1.0" encoding="UTF-8"?> | |
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/terms/" xmlns:opds="http://opds-spec.org/2010/catalog"> | |
<id>urn:uuid:433a5d6a-0b8c-4933-af65-4ca4f02763eb</id> | |
<title>feed title</title> | |
<updated>2010-01-10T10:01:11Z</updated> | |
<author> | |
<name>Feed author</name> | |
<uri>http://opds-spec.org</uri> | |
<email>[email protected]</email> | |
</author> | |
<link rel="self" type="application/atom+xml;profile=opds-catalog;kind=acquisition" href="/opds-catalogs/unpopular.xml"/> | |
<entry/> | |
</feed> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment