Indent XML
Plugin for Sublime Text editor for reindenting XML and JSON files
Details
Installs
- Total 444K
- Win 228K
- Mac 153K
- Linux 64K
Jun 4 | Jun 3 | Jun 2 | Jun 1 | May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | Apr 25 | Apr 24 | Apr 23 | Apr 22 | Apr 21 | Apr 20 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 19 | 18 | 94 | 80 | 87 | 76 | 58 | 23 | 20 | 58 | 85 | 71 | 85 | 86 | 12 | 14 | 69 | 74 | 59 | 88 | 77 | 18 | 30 | 73 | 85 | 90 | 80 | 71 | 30 | 30 | 103 | 79 | 78 | 76 | 43 | 22 | 34 | 83 | 86 | 74 | 81 | 79 | 31 | 19 | 83 | 75 |
Mac | 12 | 14 | 49 | 51 | 69 | 58 | 38 | 11 | 8 | 56 | 61 | 87 | 69 | 56 | 11 | 9 | 46 | 58 | 65 | 63 | 76 | 13 | 15 | 52 | 56 | 61 | 64 | 46 | 20 | 17 | 55 | 76 | 50 | 63 | 39 | 16 | 12 | 48 | 68 | 59 | 64 | 60 | 13 | 17 | 64 | 61 |
Linux | 1 | 6 | 14 | 16 | 25 | 13 | 8 | 2 | 5 | 12 | 18 | 19 | 18 | 15 | 8 | 2 | 15 | 25 | 13 | 21 | 11 | 1 | 3 | 26 | 20 | 20 | 13 | 17 | 3 | 8 | 22 | 22 | 19 | 18 | 10 | 7 | 6 | 11 | 20 | 11 | 20 | 20 | 11 | 9 | 17 | 25 |
Readme
- Source
- raw.githubusercontent.com
SublimeText Indent plugin
What is the goal of Indent plugin? Short answer is converting this XML
<root><node attr="1" attr2="4"><node /></node></root>
to this:
<root>
<node attr="1" attr2="4">
<node/>
</node>
</root>
Looks good? It also can convert this JSON
{ "root": [ { "field": "val1", "field2": "val2" }, { "arr": [1, 3, "three"] }] }
to this
{
"root": [
{
"field": "val1",
"field2": "val2"
},
{
"arr": [
1,
3,
"three"
]
}
]
}
Want more? It can indent only selected text - including multiple selections and even mixed XML / JSON selections. It is smart enough to recognize XML or JSON even if you are editing plain text. Indent plugin won’t mess up your keyboard shortcuts because it uses “chord” command Ctrl+K, Ctrl+F (this mean hold Ctrl, press K then press F, release Ctrl) and also available in “Selection” menu.
Supported Sublime Text versions
Indent plugin supports both Sublime Text 2 and Sublime Text 3
Installation
Just use Package Control and search for “indent xml” plugin
Usage
Click on Tools->Command Pallette… (or Ctrl+shift+P if you're a keyboard person) and then chose “Indent XML”
Settings
Currently this plugin performs patching of xml.dom.minidom.CDataSection
class in order to fix CDATA indenting in toprettyxml
function. This can be disabled in indent_xml.Sublime-settings
file by setting disable_patch_minidom to true
.
Feedback & Support
Available on Github
Contribution
…is always welcome! Same place - Github
License
This software is distributed under MIT license (see License.txt for details)