提交 17c599e6 编写于 作者: E Erich Gamma

Fixes #8679 - Do not treat '|' as a place holder in emmet snippts

上级 8cb3dae0
......@@ -260,11 +260,6 @@ export class CodeSnippet implements ICodeSnippet {
convertedSnippet += snippetType === ExternalSnippetType.EmmetSnippet ? '{{_}}' :'{{}}';
continue;
}
if (snippetType === ExternalSnippetType.EmmetSnippet && /^\|/.test(restOfLine)) {
++i;
convertedSnippet += '{{}}';
continue;
}
// Tab stops
var matches = restOfLine.match(/^\$(\d+)/);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册