[html] Please provide a built-in HTML.tmLanguage file #543

This commit is contained in:
Martin Aeschlimann 2015-12-03 09:48:59 +01:00
parent 38645311b0
commit b1014464c3

View file

@ -3,9 +3,18 @@
"version": "0.1.0",
"publisher": "vscode",
"engines": { "vscode": "*" },
"grammars": [{
// not used yet
"scopeName": "text.html.basic",
"path": "./syntaxes/HTML.plist"
}]
"contributes": {
"languages": [{
"id": "html",
"extensions": [ ".html", ".htm", ".shtml", ".mdoc", ".jsp", ".asp", ".aspx", ".jshtm" ],
"aliases": [ "HTML", "htm", "html", "xhtml" ],
"mimetypes": ["text/html", "text/x-jshtm", "text/template", "text/ng-template"]
}],
"grammars": [{
/* "language": "html", not yet enabled*/
"scopeName": "text.html.basic",
"path": "./syntaxes/HTML.plist"
}]
}
}