Indent XML
Plugin for Sublime Text editor for reindenting XML and JSON files
Details
Installs
- Total 482K
- Win 248K
- Mac 166K
- Linux 68K
Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 10 | 44 | 67 | 62 | 40 | 44 | 16 | 16 | 43 | 50 | 57 | 48 | 45 | 31 | 11 | 37 | 46 | 84 | 65 | 55 | 14 | 19 | 55 | 68 | 59 | 53 | 48 | 10 | 22 | 64 | 49 | 65 | 43 | 51 | 18 | 29 | 42 | 65 | 61 | 65 | 52 | 26 | 20 | 54 | 51 | 66 |
Mac | 3 | 33 | 36 | 56 | 46 | 43 | 8 | 11 | 34 | 36 | 46 | 26 | 38 | 15 | 7 | 33 | 52 | 47 | 37 | 36 | 9 | 14 | 39 | 32 | 40 | 41 | 33 | 3 | 9 | 36 | 37 | 52 | 37 | 33 | 9 | 2 | 32 | 49 | 28 | 37 | 32 | 5 | 9 | 36 | 36 | 34 |
Linux | 0 | 13 | 10 | 12 | 6 | 7 | 3 | 3 | 17 | 10 | 11 | 9 | 26 | 2 | 5 | 16 | 10 | 12 | 8 | 10 | 4 | 3 | 5 | 14 | 10 | 10 | 12 | 6 | 6 | 9 | 17 | 13 | 11 | 15 | 5 | 5 | 7 | 15 | 7 | 11 | 7 | 3 | 7 | 7 | 7 | 12 |
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)