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 .. ?
| |||
feedback
|
|
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. | |||
|
feedback
|
|
I think this is what you're looking for: | |||||
feedback
|
|
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. | ||||
|
feedback
|