Convert Atom XML to plain text

atom-feedxml

I have backed up my blog from blogger. The format of the file is Atom XML. What's a quick way to turn it into plaintext? Opening it in a browser leads to formatting errors…

Best Answer

Here is a sample Atom to HTML XSLT stylesheet: http://snippets.dzone.com/posts/show/1162

If you attach it to your XML file like this:

<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="my-atom-to-html-stylesheet.xsl"?>
...

..then opening the XML in a modern browser will produce nice readable text.

If you change <xsl:output method="html"/> to <xsl:output method="text"/> and remove all the extra markup in the style sheet then you will get pure text output.

Related Question