提交 aaf7b296 编写于 作者: R Ramya Achutha Rao

Dont treat => as possible tag Fixes #48887

上级 45e5f510
......@@ -502,7 +502,11 @@ export function isValidLocationForEmmetAbbreviation(document: vscode.TextDocumen
continue;
}
if (char === endAngle) {
break;
if (i >= 0 && textToBackTrack[i] === '=') {
continue; // False alarm of cases like =>
} else {
break;
}
}
if (char === startAngle) {
valid = !foundSpace;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册