today made small but useful plugin which allow turn
- Code: Select all
<?xml version="1.0" encoding="UTF-8"?><root><node1>data here</node1><node2 attr="222"><node3/></node2></root>
to formatted XML
- Code: Select all
<?xml version="1.0" ?>
<root>
<node1>
data here
</node1>
<node2 attr="222">
<node3/>
</node2>
</root>
You could get it here: https://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