Sublime Text2格式化HMTL/CSS/JS插件HTML-CSS-JS Prettify


之前格式化用過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
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM