当我使用emmet在sublime text 2中键入以下内容时:
.one>label{foo}+input:r
我得到一长串代码
<div class="one"><label for="">foo</label><input type="radio" name="" id=""></div>
有没有办法让emmet / sublime输出这种风格?
<div class="one"> <label for="">foo</label> <input type="radio" name="" id=""> </div>
我尝试使用snippets.json但没有成功
解决方法
使用内容创建Packages / User / Emmet.sublime-settings
{ // Output profiles for Syntaxes // http://docs.emmet.io/customization/Syntax-profiles/ "SyntaxProfiles": { "html": { "tag_nl": true // "tag_nl_leaf": true } } }
有关tag_nl,tag_nl_leaf和其他选项的更多信息,请查看documentation.