Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/html/package.json
3311 views
1
{
2
"name": "html",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "0.10.x"
10
},
11
"scripts": {
12
"update-grammar": "node ./build/update-grammar.mjs"
13
},
14
"categories": ["Programming Languages"],
15
"contributes": {
16
"languages": [
17
{
18
"id": "html",
19
"extensions": [
20
".html",
21
".htm",
22
".shtml",
23
".xhtml",
24
".xht",
25
".mdoc",
26
".jsp",
27
".asp",
28
".aspx",
29
".jshtm",
30
".volt",
31
".ejs",
32
".rhtml"
33
],
34
"aliases": [
35
"HTML",
36
"htm",
37
"html",
38
"xhtml"
39
],
40
"mimetypes": [
41
"text/html",
42
"text/x-jshtm",
43
"text/template",
44
"text/ng-template",
45
"application/xhtml+xml"
46
],
47
"configuration": "./language-configuration.json"
48
}
49
],
50
"grammars": [
51
{
52
"scopeName": "text.html.basic",
53
"path": "./syntaxes/html.tmLanguage.json",
54
"embeddedLanguages": {
55
"text.html": "html",
56
"source.css": "css",
57
"source.js": "javascript",
58
"source.python": "python",
59
"source.smarty": "smarty"
60
},
61
"tokenTypes": {
62
"meta.tag string.quoted": "other"
63
}
64
},
65
{
66
"language": "html",
67
"scopeName": "text.html.derivative",
68
"path": "./syntaxes/html-derivative.tmLanguage.json",
69
"embeddedLanguages": {
70
"text.html": "html",
71
"source.css": "css",
72
"source.js": "javascript",
73
"source.python": "python",
74
"source.smarty": "smarty"
75
},
76
"tokenTypes": {
77
"meta.tag string.quoted": "other"
78
}
79
}
80
],
81
"snippets": [
82
{
83
"language": "html",
84
"path": "./snippets/html.code-snippets"
85
}
86
]
87
},
88
"repository": {
89
"type": "git",
90
"url": "https://github.com/microsoft/vscode.git"
91
}
92
}
93
94