-
Notifications
You must be signed in to change notification settings - Fork 54
/
tree-sitter.json
42 lines (42 loc) · 984 Bytes
/
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
{
"metadata": {
"version": "0.4.0",
"license": "MIT",
"authors": [
{
"name": "MDeiml"
}
],
"description": "Markdown grammar for tree-sitter",
"links": {
"repository": "https://github.com/tree-sitter-grammars/tree-sitter-markdown"
}
},
"grammars": [
{
"name": "markdown",
"scope": "text.markdown",
"path": "tree-sitter-markdown",
"injection-regex": "^(markdown|md)$",
"file-types": [
"md"
],
"highlights": "queries/highlights.scm",
"injections": "queries/injections.scm",
"external-files": [
"common/common.js"
]
},
{
"name": "markdown_inline",
"camelcase": "MarkdownInline",
"scope": "text.markdown_inline",
"path": "tree-sitter-markdown-inline",
"highlights": "queries/highlights.scm",
"injections": "queries/injections.scm",
"external-files": [
"common/common.js"
]
}
]
}