Hi all,
today made small but useful plugin which allow turn
<?xml version="1.0" encoding="UTF-8"?><root><node1>data here</node1><node2 attr="222"><node3/></node2></root>
to formatted XML
<?xml version="1.0" ?>
<root>
<node1>
data here
</node1>
<node2 attr="222">
<node3/>
</node2>
</root>
You could get it here: github.com/alek-sys/sublimetext_indentxml
Any comments are welcome!
P.S. Hope that this is not a one of the standard features which I just don’t know about