Is there a vim command or plugin that quickly "beautifies" XML?
I have a file that looks like
<parent><child attr="bla"><subitem>Hello!
</subitem></child>
</parent>
and I want to make it look like
<parent>
<child attr="bla">
<subitem>Hello!
</subitem>
<child>
<parent>