-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtree-sitter.json
55 lines (55 loc) · 1.15 KB
/
tree-sitter.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
{
"metadata": {
"version": "0.7.0",
"description": "XML & DTD grammars for tree-sitter",
"links": {
"repository": "https://github.com/tree-sitter-grammars/tree-sitter-xml"
},
"authors": [
{
"name": "ObserverOfTime",
"email": "[email protected]",
"url": "https://observeroftime.github.io/"
},
{
"name": "Amaan Qureshi",
"email": "[email protected]"
}
]
},
"grammars": [
{
"name": "xml",
"camelcase": "XML",
"scope": "source.xml",
"file-types": [
"xml",
"svg",
"xsd",
"xslt",
"xsl",
"rng"
],
"injection-regex": "^(xml|svg|xsd|xslt|xsl|rng)$",
"highlights": "queries/xml/highlights.scm",
"path": "xml",
"external-files": [
"common/scanner.h"
]
},
{
"name": "dtd",
"camelcase": "DTD",
"scope": "source.dtd",
"file-types": [
"dtd"
],
"injection-regex": "^dtd$",
"highlights": "queries/dtd/highlights.scm",
"path": "dtd",
"external-files": [
"common/scanner.h"
]
}
]
}