Minify an xml in one line

Jérôme DESPATIS <[email protected]> Mon, 22 Aug 2011 21:10:03 +0200
Newsgroups gmane.comp.web.html-tidy.user
Message-ID <[email protected]>
Hello,

I have an xml file
I'd like to create the smallest file as I can.
So as a result I'd like that my xml holds on a single line (or 2 lines, 
the <?xml...> being the first line)

Any idea how to do this with tidy ? I haven't found the parameter to 
perform that in tidy.
And another thing, I'd like to avoid post process that removes the \n, 
as my xml may contain CDATA with \n in it, that I have to leave untouched

My config for tidy is:
--------------------------
$config = array('input-xml'  => true,
                         'output-xml' => true,
                         'indent'     => true,
                         'wrap'       => 0);

A minimalistic xml could be:
-----------------------------------
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed>
<title>Title</title>
<id>geofeed-contacts</id>
<entry>
<title>Title</title>
</entry>
</feed>

What I would like to have is the 2 lines (or even 1 line):
----------------------------------------------------------------------
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed><title>Title</title><id>geofeed-contacts</id><entry><title>Title</title></entry></feed>

Any idea is welcome

Thanks!

-- 
Jérôme Despatis
[email protected]