Skip to content

Commit 046c08c

Browse files
committed
chore: also support tag names when in uppercase
1 parent 58004f1 commit 046c08c

File tree

1 file changed

+1
-1
lines changed
  • src/extensionsIntegrated/Emmet

1 file changed

+1
-1
lines changed

src/extensionsIntegrated/Emmet/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ define(function (require, exports, module) {
612612

613613
// the word must be either in markupSnippetsList, htmlList or it must have a positive symbol
614614
if (markupSnippetsList.includes(word) ||
615-
htmlTags.includes(word) ||
615+
htmlTags.includes(word.toLowerCase()) ||
616616
positiveSymbols.some(symbol => word.includes(symbol))) {
617617

618618
try {

0 commit comments

Comments
 (0)