-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlanguages.json
112 lines (112 loc) · 3.04 KB
/
languages.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"markdown": {
"match": "markdown|md",
"contentName": "meta.embedded.inline.markdown",
"include": "text.html.markdown"
},
"html": {
"match": "html",
"contentName": "meta.embedded.inline.html",
"include": "text.html.basic"
},
"django_html": {
"match": "django_html|django",
"contentName": "meta.embedded.inline.django_html",
"include": "text.html.django"
},
"django_txt": {
"match": "django_txt",
"contentName": "meta.embedded.inline.django_txt",
"include": "text.django"
},
"jinja": {
"match": "jinja",
"contentName": "meta.embedded.inline.jinja",
"include": "source.jinja"
},
"jinja_html": {
"match": "jinja_html",
"contentName": "meta.embedded.inline.jinja_html",
"include": "text.html.jinja"
},
"css": {
"match": "css|style|styles",
"contentName": "meta.embedded.inline.css",
"include": "source.css"
},
"scss": {
"match": "scss",
"contentName": "meta.embedded.inline.scss",
"include": "source.css.scss"
},
"less": {
"match": "less",
"contentName": "meta.embedded.inline.less",
"include": "source.css.less"
},
"sass": {
"match": "sass",
"contentName": "meta.embedded.inline.sass",
"include": "source.sass"
},
"stylus": {
"match": "stylus",
"contentName": "meta.embedded.inline.stylus",
"include": "source.stylus"
},
"javascript": {
"match": "javascript|js",
"contentName": "meta.embedded.inline.js",
"include": "source.js"
},
"jsx": {
"match": "javascriptreact|react|jsx",
"contentName": "meta.embedded.inline.jsx",
"include": "source.js.jsx"
},
"typescript": {
"match": "typescript|ts",
"contentName": "meta.embedded.inline.ts",
"include": "source.ts"
},
"tsx": {
"match": "typescriptreact|tsx",
"contentName": "meta.embedded.inline.tsx",
"include": "source.tsx"
},
"coffeescript": {
"match": "coffeescript|coffee",
"contentName": "meta.embedded.inline.coffeescript",
"include": "source.coffee"
},
"sql": {
"match": "sql",
"contentName": "meta.embedded.inline.sql",
"include": "source.sql"
},
"json": {
"match": "json",
"contentName": "meta.embedded.inline.json",
"include": "source.json"
},
"yaml": {
"match": "yaml",
"contentName": "meta.embedded.inline.yaml",
"include": "source.yaml"
},
"graphql": {
"match": "graphql",
"contentName": "meta.embedded.inline.graphql",
"include": "source.graphql"
},
"xml": {
"match": "xml",
"contentName": "meta.embedded.inline.xml",
"include": "text.xml"
},
"python": {
"match": "python",
"contentName": "meta.embedded.inline.python",
"include": "source.python"
}
}