Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a command that will auto-format HTML code in Sublime Text 2?

Cleaning up HTML source code so it looks better and is easier to read .. ?

share|improve this question
1  
i don't know about sublime text 2, so i'm not gonna post this as an answer, since it's not easy to accept an answer that's not totally about the question ;) but i do know about notepad++, and it has an extension/plugin called textfx which does things like that. – davogotland Jan 12 '12 at 17:54

9 Answers

up vote 259 down vote accepted

Long time open, this question, anyway you don't need any plugins to do this. Just select all lines (Ctrl-A) and then from the menu select "Edit, Line, Reindent". This will work if your file is saved with an extension that contains HTML like .html or .php

EDIT: tested again under most recent version 2.0 and i added this to my key-mappings:

{ "keys": ["ctrl+shift+r"], "command": "reindent" , "args": {"single_line": false}}
share|improve this answer
3  
Further, you can add a key binding in a Mac enviro to automate "Reindent." I used option + shift + return, but really, use any you like. – American Yak Jun 26 '12 at 4:07
3  
By the way, this works for non HTML source code also, like eg Ruby or JS – peter Jul 22 '12 at 17:57
9  
This works great if the code doesn't have multiple tags opening on one line that don't also close on one line or vice versa. – Charlie Gorichanaz Nov 7 '12 at 5:32
6  
Perfect! On mac you need super for the cmd key, so such: { "keys": ["super+shift+r"], "command": "reindent" , "args": {"single_line": false}} – Geert Weening Nov 7 '12 at 12:28
1  
works on PHP code too ! – psycho brm Nov 9 '12 at 17:08
show 6 more comments

The only one package I've been able to find is Tag.

You can install it using the package control. http://wbond.net/sublime_packages/package_control

After installing package control. Go to package control (Preferences -> Package Control) then type install, hit enter. Then type tag and hit enter.

After installing Tag, highlight the text and press the shortcut Ctrl+Alt+F.

share|improve this answer
3  
a better plugin is Tidy HTML – MatthewFord May 21 '12 at 14:53
@dardub - AWESOME! Thank you very much for that answer. You rock! – Ace Feb 20 at 17:21

Just a general tip. What I did to auto-tidy up my HTML, was install the package HTML_Tidy, and then add the following keybinding to the default settings (which I use):

{ "keys": ["enter"], "command": "html_tidy" },

this runs HTML Tidy with every enter. There may be drawbacks to this, I'm quite new to Sublime myself, but it seems to do what I want :)

share|improve this answer

Simply go to

Edit -> Tag -> Auto-format tags on document

share|improve this answer
4  
I don't see that menu option in Sublime Text 2 Version 2.0.1, Build 2217 on Mac. Are you sure it's a standard feature? – ajostergaard Jan 13 at 7:22
You have to install Tag from the Package Manager. But I have one problem with it. When <b>somthing</b> is followed by a comma, the comma is put on a new line, resulting in a space between something and the comma in a browser view. – reitermarkus Feb 13 at 17:33

I am yet to have the privilege to comment so this is simply additional information related to @peter's answer above answer.

I found HTML did not align as expected if IE conditional comments in the header were not completely in-line e.g. flush to the left:

<!--[if lt IE 7]>
<p class='chromeframe'>Your browser is <em>unsupported</em>. <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</p>
<![endif]-->
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]--> 
share|improve this answer

There's a plugin called SublimeHtmlTidy which works pretty well

https://github.com/welovewordpress/SublimeHtmlTidy

share|improve this answer

I created a Package called HTMLBeautify that does a decent job of reformatting HTML. I based it off of a Perl script I found back in 1997—I updated it to work with all the new fangled modern tags. :)

Check it out and let me know what you think!

https://github.com/rareyman/HTMLBeautify

share|improve this answer

I think this is what you're looking for:

https://github.com/victorporof/Sublime-HTMLPrettify

share|improve this answer
I followed the instructions but it did not work. The plugin gives me errors. "'{' is not recognized as an internal or external command, operable program or batch file." – David K Egghead Jan 16 '12 at 15:32
I believe that specific package requires Node to be installed which is an additional undertaking... dandean.com/nodejs-npm-express-osx disregard the NPM and express – bgreater Apr 5 '12 at 0:12
@Allan Is this work on Windows. I have node.js installed in my computer. – F1beta Oct 1 '12 at 2:34

I'm using tidy together with custom build system to prettify HTML.

I have HTMLTidy.sublime-build in my Packages/User/ directory:

{
  "cmd": ["tidy", "-config", "$packages/User/tidy_config.cfg", "$file"]
}

and tidy_config.cfg file in the same directory:

indent: auto
tab-size: 4
show-warnings: no
write-back: yes
quiet: yes
indent-cdata: yes
tidy-mark: no
wrap: 0

And just select build system and press ctrl+b or cmd+b to reformat file content. One minor issue with that is that ST2 does not automatically reload the file so to see the results you have to switch to some other file and back (or to other application and back).

On Mac I've used macports to install tidy, on Windows you'd have to download it yourself and specify working directory in the build system, where tidy is located:

"working_dir": "c:\\HTMLTidy\\"

or add it to the PATH.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.