首页 > 代码库 > Sublime Text2格式化HMTL/CSS/JS插件HTML-CSS-JS Prettify
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}
Sublime Text2格式化HMTL/CSS/JS插件HTML-CSS-JS Prettify
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。