Indent XML
Plugin for Sublime Text editor for reindenting XML and JSON files
Details
Installs
- Total 487K
- Win 251K
- Mac 168K
- Linux 68K
Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 13 | 52 | 62 | 50 | 64 | 53 | 23 | 15 | 57 | 46 | 49 | 77 | 58 | 21 | 15 | 56 | 51 | 67 | 64 | 57 | 24 | 17 | 42 | 36 | 0 | 0 | 0 | 1 | 25 | 56 | 65 | 31 | 20 | 61 | 29 | 19 | 47 | 0 | 0 | 68 | 61 | 35 | 42 | 67 | 87 | 79 |
Mac | 8 | 40 | 48 | 42 | 41 | 34 | 7 | 12 | 38 | 45 | 40 | 37 | 42 | 16 | 11 | 37 | 32 | 39 | 44 | 40 | 10 | 4 | 31 | 16 | 0 | 0 | 0 | 0 | 5 | 35 | 45 | 21 | 6 | 36 | 12 | 6 | 38 | 0 | 0 | 43 | 34 | 7 | 15 | 35 | 46 | 42 |
Linux | 1 | 7 | 15 | 16 | 11 | 19 | 6 | 2 | 10 | 14 | 15 | 10 | 10 | 2 | 5 | 13 | 10 | 10 | 20 | 14 | 4 | 2 | 11 | 13 | 0 | 0 | 0 | 1 | 2 | 14 | 7 | 6 | 3 | 15 | 1 | 5 | 10 | 0 | 0 | 12 | 9 | 4 | 6 | 11 | 21 | 10 |
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)