html – 将emmet autocompletes扩展为sublime文本中的多行

前端之家收集整理的这篇文章主要介绍了html – 将emmet autocompletes扩展为sublime文本中的多行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我使用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.

原文链接:https://www.f2er.com/html/225811.html

猜你在找的HTML相关文章