-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.09 KB
/
package.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
{
"version": "0.1.3",
"name": "myst-tml-syntax",
"displayName": "MyST Syntax Highlighting",
"description": "Texmate syntax highlighting for MyST Markdown.",
"keywords": [
"markdown",
"myst",
"syntax",
"texmate"
],
"publisher": "chrisjsewell",
"authors": [
"Chris Sewell"
],
"icon": "logo/icon_128x128.png",
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/chrisjsewell/vscode-myst-syntax.git"
},
"homepage": "https://github.com/chrisjsewell/vscode-myst-syntax/blob/main/README.md",
"bugs": {
"url": "https://github.com/chrisjsewell/vscode-myst-syntax/issues/new/choose"
},
"engines": {
"vscode": "^1.76.0"
},
"contributes": {
"grammars": [
{
"path": "./syntaxes/myst.tmLanguage",
"injectTo": [
"text.html.markdown"
],
"scopeName": "text.myst.injection",
"embeddedLanguages": {
"meta.embedded.block.markdown": "text.html.markdown",
"meta.embedded.block.ipython": "source.python"
}
}
]
}
}