Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/markdown-math/package.json
3290 views
1
{
2
"name": "markdown-math",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"icon": "icon.png",
7
"publisher": "vscode",
8
"license": "MIT",
9
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
10
"engines": {
11
"vscode": "^1.54.0"
12
},
13
"categories": [
14
"Other",
15
"Programming Languages"
16
],
17
"capabilities": {
18
"virtualWorkspaces": true,
19
"untrustedWorkspaces": {
20
"supported": true
21
}
22
},
23
"main": "./out/extension",
24
"browser": "./dist/browser/extension",
25
"activationEvents": [],
26
"contributes": {
27
"languages": [
28
{
29
"id": "markdown-math",
30
"aliases": []
31
}
32
],
33
"grammars": [
34
{
35
"language": "markdown-math",
36
"scopeName": "text.html.markdown.math",
37
"path": "./syntaxes/md-math.tmLanguage.json"
38
},
39
{
40
"scopeName": "markdown.math.block",
41
"path": "./syntaxes/md-math-block.tmLanguage.json",
42
"injectTo": [
43
"text.html.markdown"
44
],
45
"embeddedLanguages": {
46
"meta.embedded.math.markdown": "latex"
47
}
48
},
49
{
50
"scopeName": "markdown.math.inline",
51
"path": "./syntaxes/md-math-inline.tmLanguage.json",
52
"injectTo": [
53
"text.html.markdown"
54
],
55
"embeddedLanguages": {
56
"meta.embedded.math.markdown": "latex",
57
"punctuation.definition.math.end.markdown": "latex"
58
}
59
},
60
{
61
"scopeName": "markdown.math.codeblock",
62
"path": "./syntaxes/md-math-fence.tmLanguage.json",
63
"injectTo": [
64
"text.html.markdown"
65
],
66
"embeddedLanguages": {
67
"meta.embedded.math.markdown": "latex"
68
}
69
}
70
],
71
"notebookRenderer": [
72
{
73
"id": "vscode.markdown-it-katex-extension",
74
"displayName": "Markdown it KaTeX renderer",
75
"entrypoint": {
76
"extends": "vscode.markdown-it-renderer",
77
"path": "./notebook-out/katex.js"
78
}
79
}
80
],
81
"markdown.markdownItPlugins": true,
82
"markdown.previewStyles": [
83
"./notebook-out/katex.min.css",
84
"./preview-styles/index.css"
85
],
86
"configuration": [
87
{
88
"title": "Markdown Math",
89
"properties": {
90
"markdown.math.enabled": {
91
"type": "boolean",
92
"default": true,
93
"description": "%config.markdown.math.enabled%"
94
},
95
"markdown.math.macros": {
96
"type": "object",
97
"additionalProperties": {
98
"type": "string"
99
},
100
"default": {},
101
"description": "%config.markdown.math.macros%",
102
"scope": "resource"
103
}
104
}
105
}
106
]
107
},
108
"scripts": {
109
"compile": "npm run build-notebook",
110
"watch": "npm run build-notebook",
111
"build-notebook": "node ./esbuild.mjs"
112
},
113
"devDependencies": {
114
"@types/markdown-it": "^0.0.0",
115
"@types/vscode-notebook-renderer": "^1.60.0"
116
},
117
"repository": {
118
"type": "git",
119
"url": "https://github.com/microsoft/vscode.git"
120
},
121
"dependencies": {
122
"@vscode/markdown-it-katex": "^1.1.2"
123
}
124
}
125
126