Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/markdown-language-features/schemas/package.schema.json
3291 views
1
{
2
"$schema": "http://json-schema.org/draft-07/schema#",
3
"type": "object",
4
"properties": {
5
"contributes": {
6
"type": "object",
7
"properties": {
8
"markdown.previewStyles": {
9
"type": "array",
10
"description": "Contributed CSS files that change the look or layout of the Markdown preview",
11
"items": {
12
"type": "string",
13
"description": "Extension relative path to a css file"
14
}
15
},
16
"markdown.previewScripts": {
17
"type": "array",
18
"description": "Contributed scripts that are executed in the Markdown preview",
19
"items": {
20
"type": "string",
21
"description": "Extension relative path to a JavaScript file"
22
}
23
},
24
"markdown.markdownItPlugins": {
25
"type": "boolean",
26
"description": "Does this extension contribute a markdown-it plugin?"
27
}
28
}
29
}
30
}
31
}
32
33