之前格式化用過JSFormat,今天在GitHub發現了一個比較好的插件HTML-CSS-JS Prettify,具體的地址https://github.com/victorporof/Sublime-HTMLPrettify,安裝插件的話需要安裝Node.js,具體操作如下:
1.官網下載Node.js,地址http://nodejs.org/download(本人電腦Win8 64)
2.Sublime中ctrl+shift+p,輸入ip:

3.點擊Install Package,然后搜索HTML-CSS-JS Prettify:

4.安裝完之后不能正常使用,需要設置一下路徑,右擊頁面多了一個HTML/CSS/JS Prettiy的選項,設置一下Node路徑:

設置如下,根據自己的操作系統改下Node的安裝路徑
{
// Simply using `node` without specifying a path sometimes doesn't work :(
// https://github.com/victorporof/Sublime-HTMLPrettify#oh-noez-command-not-found
// http://nodejs.org/#download
"node_path": {
"windows": "D:/Program Files/nodejs/node.exe",
"linux": "/usr/bin/nodejs",
"osx": "/usr/local/bin/node"
},
// Automatically format when a file is saved.
"format_on_save": false,
// Only format the selection if there's one available.
"format_selection_only": true,
// Log the settings passed to the prettifier from `.jsbeautifyrc`.
"print_diagnostics": true
}
