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 .. ?

link|improve this question

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 at 17:54
feedback

3 Answers

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 [enter]. Then type tag [enter].

After installing Tag, highlight the text and press the shortcut ctrl+alt+f.

link|improve this answer
a better plugin is Tidy HTML – MatthewFord May 21 at 14:53
feedback

I think this is what you're looking for:

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

link|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 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 at 0:12
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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