用sublime text3 编译less并且转换成css
https://blog.csdn.net/wangweiscsdn/article/details/53394014
Sublime Text插件之HTML-CSS-JS Prettify下载
https://github.com/victorporof/Sublime-HTMLPrettify
a、下载插件,解压到:根目录/Data/Packages 中
重新打开sublime 可以看到如下图
b、配置nodejs路径 (提前下载并安装Node.js官网)
如上图位置 set 'node' path
"node_path":
{
"windows": "D:/Program Files/nodejs/node.exe",
"linux": "/usr/bin/nodejs",
"osx": "/usr/local/bin/node"
},
参考链接https://blog.csdn.net/u011127019/article/details/53748245
1、html 快捷键
想要显示
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
</body>
</html>
输入html:5 点进tab 键实现。
html:5
2、格式化
html 页面或者css 页面 右键
image.png
网友评论