例如,我要输入以下内容:
.classOne#idOne?customAttribute?customAttributeValue
然后,当在键盘上按下 Tab 时,我想要得到以下输出:
<div class="classOne" id="idOne" customAttribute="customAttributeValue"></div>
什么是{?
}字符才能使此输入/输出成为可能?
答案 0 :(得分:0)
您可以将自定义代码段放入snippets.json
https://vscode.readthedocs.io/en/latest/editor/emmet/#using-custom-emmet-snippets
答案 1 :(得分:0)
Emmet Docs可以描述如何做。
输入:
.classOne#idOne[customAttribute=customAttributeOne]
输出:
<div class="classOne" id="idOne" customAttribute="customAttributeOne"></div>