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 .. ?
|
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 .. ? |
|||||||
|
|
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:
|
|||||||||||||||||||||
|
|
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 After installing Tag, highlight the text and press the shortcut Ctrl+Alt+F. |
|||||||
|
|
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):
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 :) |
|||
|
|
|
Simply go to Edit -> Tag -> Auto-format tags on document |
|||||||
|
|
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:
|
|||
|
|
|
There's a plugin called SublimeHtmlTidy which works pretty well |
|||
|
|
|
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! |
|||
|
|
|
I think this is what you're looking for: |
|||||||
|
|
I'm using tidy together with custom build system to prettify HTML. I have HTMLTidy.sublime-build in my Packages/User/ directory:
and tidy_config.cfg file in the same directory:
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:
or add it to the PATH. |
||||
|
|