-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathtree-sitter.json
More file actions
54 lines (54 loc) · 1.33 KB
/
tree-sitter.json
File metadata and controls
54 lines (54 loc) · 1.33 KB
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
{
"$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json",
"grammars": [
{
"name": "markdown",
"scope": "text.markdown",
"path": "tree-sitter-markdown",
"external-files": [
"common/common.js"
],
"file-types": [
"md"
],
"highlights": "tree-sitter-markdown/queries/highlights.scm",
"injections": "tree-sitter-markdown/queries/injections.scm",
"injection-regex": "^(markdown|md)$"
},
{
"name": "markdown_inline",
"camelcase": "MarkdownInline",
"scope": "text.markdown_inline",
"path": "tree-sitter-markdown-inline",
"external-files": [
"common/common.js"
],
"file-types": null,
"highlights": "tree-sitter-markdown-inline/queries/highlights.scm",
"injections": "tree-sitter-markdown-inline/queries/injections.scm"
}
],
"metadata": {
"version": "0.5.3",
"license": "MIT",
"description": "Markdown grammar for tree-sitter",
"authors": [
{
"name": "MDeiml"
}
],
"links": {
"repository": "https://github.com/tree-sitter-grammars/tree-sitter-markdown"
}
},
"bindings": {
"c": true,
"go": false,
"java": false,
"node": true,
"python": true,
"rust": true,
"swift": true,
"zig": false
}
}