Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/markdown-language-features/package.json
5222 views
1
{
2
"name": "markdown-language-features",
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.70.0"
12
},
13
"main": "./out/extension",
14
"browser": "./dist/browser/extension",
15
"categories": [
16
"Programming Languages"
17
],
18
"activationEvents": [
19
"onLanguage:markdown",
20
"onLanguage:prompt",
21
"onLanguage:instructions",
22
"onLanguage:chatagent",
23
"onLanguage:skill",
24
"onCommand:markdown.api.render",
25
"onCommand:markdown.api.reloadPlugins",
26
"onWebviewPanel:markdown.preview"
27
],
28
"capabilities": {
29
"virtualWorkspaces": true,
30
"untrustedWorkspaces": {
31
"supported": "limited",
32
"description": "%workspaceTrust%",
33
"restrictedConfigurations": [
34
"markdown.styles"
35
]
36
}
37
},
38
"contributes": {
39
"notebookRenderer": [
40
{
41
"id": "vscode.markdown-it-renderer",
42
"displayName": "Markdown it renderer",
43
"entrypoint": "./notebook-out/index.js",
44
"mimeTypes": [
45
"text/markdown",
46
"text/latex",
47
"text/x-css",
48
"text/x-html",
49
"text/x-json",
50
"text/x-typescript",
51
"text/x-abap",
52
"text/x-apex",
53
"text/x-azcli",
54
"text/x-bat",
55
"text/x-cameligo",
56
"text/x-clojure",
57
"text/x-coffee",
58
"text/x-cpp",
59
"text/x-csharp",
60
"text/x-csp",
61
"text/x-css",
62
"text/x-dart",
63
"text/x-dockerfile",
64
"text/x-ecl",
65
"text/x-fsharp",
66
"text/x-go",
67
"text/x-graphql",
68
"text/x-handlebars",
69
"text/x-hcl",
70
"text/x-html",
71
"text/x-ini",
72
"text/x-java",
73
"text/x-javascript",
74
"text/x-julia",
75
"text/x-kotlin",
76
"text/x-less",
77
"text/x-lexon",
78
"text/x-lua",
79
"text/x-m3",
80
"text/x-markdown",
81
"text/x-mips",
82
"text/x-msdax",
83
"text/x-mysql",
84
"text/x-objective-c/objective",
85
"text/x-pascal",
86
"text/x-pascaligo",
87
"text/x-perl",
88
"text/x-pgsql",
89
"text/x-php",
90
"text/x-postiats",
91
"text/x-powerquery",
92
"text/x-powershell",
93
"text/x-pug",
94
"text/x-python",
95
"text/x-r",
96
"text/x-razor",
97
"text/x-redis",
98
"text/x-redshift",
99
"text/x-restructuredtext",
100
"text/x-ruby",
101
"text/x-rust",
102
"text/x-sb",
103
"text/x-scala",
104
"text/x-scheme",
105
"text/x-scss",
106
"text/x-shell",
107
"text/x-solidity",
108
"text/x-sophia",
109
"text/x-sql",
110
"text/x-st",
111
"text/x-swift",
112
"text/x-systemverilog",
113
"text/x-tcl",
114
"text/x-twig",
115
"text/x-typescript",
116
"text/x-vb",
117
"text/x-xml",
118
"text/x-yaml",
119
"application/json"
120
]
121
}
122
],
123
"commands": [
124
{
125
"command": "_markdown.copyImage",
126
"title": "%markdown.copyImage.title%",
127
"category": "Markdown"
128
},
129
{
130
"command": "_markdown.openImage",
131
"title": "%markdown.openImage.title%",
132
"category": "Markdown"
133
},
134
{
135
"command": "markdown.showPreview",
136
"title": "%markdown.preview.title%",
137
"category": "Markdown",
138
"icon": {
139
"light": "./media/preview-light.svg",
140
"dark": "./media/preview-dark.svg"
141
}
142
},
143
{
144
"command": "markdown.showPreviewToSide",
145
"title": "%markdown.previewSide.title%",
146
"category": "Markdown",
147
"icon": "$(open-preview)"
148
},
149
{
150
"command": "markdown.showLockedPreviewToSide",
151
"title": "%markdown.showLockedPreviewToSide.title%",
152
"category": "Markdown",
153
"icon": "$(open-preview)"
154
},
155
{
156
"command": "markdown.showSource",
157
"title": "%markdown.showSource.title%",
158
"category": "Markdown",
159
"icon": "$(go-to-file)"
160
},
161
{
162
"command": "markdown.showPreviewSecuritySelector",
163
"title": "%markdown.showPreviewSecuritySelector.title%",
164
"category": "Markdown"
165
},
166
{
167
"command": "markdown.preview.refresh",
168
"title": "%markdown.preview.refresh.title%",
169
"category": "Markdown"
170
},
171
{
172
"command": "markdown.preview.toggleLock",
173
"title": "%markdown.preview.toggleLock.title%",
174
"category": "Markdown"
175
},
176
{
177
"command": "markdown.findAllFileReferences",
178
"title": "%markdown.findAllFileReferences%",
179
"category": "Markdown"
180
},
181
{
182
"command": "markdown.editor.insertLinkFromWorkspace",
183
"title": "%markdown.editor.insertLinkFromWorkspace%",
184
"category": "Markdown",
185
"enablement": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !activeEditorIsReadonly"
186
},
187
{
188
"command": "markdown.editor.insertImageFromWorkspace",
189
"title": "%markdown.editor.insertImageFromWorkspace%",
190
"category": "Markdown",
191
"enablement": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !activeEditorIsReadonly"
192
}
193
],
194
"menus": {
195
"webview/context": [
196
{
197
"command": "_markdown.copyImage",
198
"when": "webviewId == 'markdown.preview' && (webviewSection == 'image' || webviewSection == 'localImage')"
199
},
200
{
201
"command": "_markdown.openImage",
202
"when": "webviewId == 'markdown.preview' && webviewSection == 'localImage'"
203
}
204
],
205
"editor/title": [
206
{
207
"command": "markdown.showPreviewToSide",
208
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused && !hasCustomMarkdownPreview",
209
"alt": "markdown.showPreview",
210
"group": "navigation"
211
},
212
{
213
"command": "markdown.showSource",
214
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'",
215
"group": "navigation"
216
},
217
{
218
"command": "markdown.preview.refresh",
219
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'",
220
"group": "1_markdown"
221
},
222
{
223
"command": "markdown.preview.toggleLock",
224
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'",
225
"group": "1_markdown"
226
},
227
{
228
"command": "markdown.showPreviewSecuritySelector",
229
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'",
230
"group": "1_markdown"
231
}
232
],
233
"explorer/context": [
234
{
235
"command": "markdown.showPreview",
236
"when": "resourceLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !hasCustomMarkdownPreview",
237
"group": "navigation"
238
},
239
{
240
"command": "markdown.findAllFileReferences",
241
"when": "resourceLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/",
242
"group": "4_search"
243
}
244
],
245
"editor/title/context": [
246
{
247
"command": "markdown.showPreview",
248
"when": "resourceLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !hasCustomMarkdownPreview",
249
"group": "1_open"
250
},
251
{
252
"command": "markdown.findAllFileReferences",
253
"when": "resourceLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/"
254
}
255
],
256
"commandPalette": [
257
{
258
"command": "_markdown.openImage",
259
"when": "false"
260
},
261
{
262
"command": "_markdown.copyImage",
263
"when": "false"
264
},
265
{
266
"command": "markdown.showPreview",
267
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused",
268
"group": "navigation"
269
},
270
{
271
"command": "markdown.showPreviewToSide",
272
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused",
273
"group": "navigation"
274
},
275
{
276
"command": "markdown.showLockedPreviewToSide",
277
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused",
278
"group": "navigation"
279
},
280
{
281
"command": "markdown.showSource",
282
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'",
283
"group": "navigation"
284
},
285
{
286
"command": "markdown.showPreviewSecuritySelector",
287
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused"
288
},
289
{
290
"command": "markdown.showPreviewSecuritySelector",
291
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'"
292
},
293
{
294
"command": "markdown.preview.toggleLock",
295
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'"
296
},
297
{
298
"command": "markdown.preview.refresh",
299
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused"
300
},
301
{
302
"command": "markdown.preview.refresh",
303
"when": "activeWebviewPanelId == 'markdown.preview' || activeCustomEditorId == 'vscode.markdown.preview.editor'"
304
},
305
{
306
"command": "markdown.findAllFileReferences",
307
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/"
308
}
309
]
310
},
311
"keybindings": [
312
{
313
"command": "markdown.showPreview",
314
"key": "shift+ctrl+v",
315
"mac": "shift+cmd+v",
316
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused"
317
},
318
{
319
"command": "markdown.showPreviewToSide",
320
"key": "ctrl+k v",
321
"mac": "cmd+k v",
322
"when": "editorLangId =~ /^(markdown|prompt|instructions|chatagent|skill)$/ && !notebookEditorFocused"
323
}
324
],
325
"configuration": {
326
"type": "object",
327
"title": "Markdown",
328
"order": 20,
329
"properties": {
330
"markdown.styles": {
331
"type": "array",
332
"items": {
333
"type": "string"
334
},
335
"default": [],
336
"description": "%markdown.styles.dec%",
337
"scope": "resource"
338
},
339
"markdown.preview.breaks": {
340
"type": "boolean",
341
"default": false,
342
"markdownDescription": "%markdown.preview.breaks.desc%",
343
"scope": "resource"
344
},
345
"markdown.preview.linkify": {
346
"type": "boolean",
347
"default": true,
348
"description": "%markdown.preview.linkify%",
349
"scope": "resource"
350
},
351
"markdown.preview.typographer": {
352
"type": "boolean",
353
"default": false,
354
"description": "%markdown.preview.typographer%",
355
"scope": "resource"
356
},
357
"markdown.preview.fontFamily": {
358
"type": "string",
359
"default": "-apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', system-ui, 'Ubuntu', 'Droid Sans', sans-serif",
360
"description": "%markdown.preview.fontFamily.desc%",
361
"scope": "resource"
362
},
363
"markdown.preview.fontSize": {
364
"type": "number",
365
"default": 14,
366
"description": "%markdown.preview.fontSize.desc%",
367
"scope": "resource"
368
},
369
"markdown.preview.lineHeight": {
370
"type": "number",
371
"default": 1.6,
372
"description": "%markdown.preview.lineHeight.desc%",
373
"scope": "resource"
374
},
375
"markdown.preview.scrollPreviewWithEditor": {
376
"type": "boolean",
377
"default": true,
378
"description": "%markdown.preview.scrollPreviewWithEditor.desc%",
379
"scope": "resource"
380
},
381
"markdown.preview.markEditorSelection": {
382
"type": "boolean",
383
"default": true,
384
"description": "%markdown.preview.markEditorSelection.desc%",
385
"scope": "resource"
386
},
387
"markdown.preview.scrollEditorWithPreview": {
388
"type": "boolean",
389
"default": true,
390
"description": "%markdown.preview.scrollEditorWithPreview.desc%",
391
"scope": "resource"
392
},
393
"markdown.preview.doubleClickToSwitchToEditor": {
394
"type": "boolean",
395
"default": true,
396
"description": "%markdown.preview.doubleClickToSwitchToEditor.desc%",
397
"scope": "resource"
398
},
399
"markdown.preview.openMarkdownLinks": {
400
"type": "string",
401
"default": "inPreview",
402
"description": "%configuration.markdown.preview.openMarkdownLinks.description%",
403
"scope": "resource",
404
"enum": [
405
"inPreview",
406
"inEditor"
407
],
408
"enumDescriptions": [
409
"%configuration.markdown.preview.openMarkdownLinks.inPreview%",
410
"%configuration.markdown.preview.openMarkdownLinks.inEditor%"
411
]
412
},
413
"markdown.links.openLocation": {
414
"type": "string",
415
"default": "currentGroup",
416
"description": "%configuration.markdown.links.openLocation.description%",
417
"scope": "resource",
418
"enum": [
419
"currentGroup",
420
"beside"
421
],
422
"enumDescriptions": [
423
"%configuration.markdown.links.openLocation.currentGroup%",
424
"%configuration.markdown.links.openLocation.beside%"
425
]
426
},
427
"markdown.suggest.paths.enabled": {
428
"type": "boolean",
429
"default": true,
430
"description": "%configuration.markdown.suggest.paths.enabled.description%",
431
"scope": "resource"
432
},
433
"markdown.suggest.paths.includeWorkspaceHeaderCompletions": {
434
"type": "string",
435
"default": "onDoubleHash",
436
"scope": "resource",
437
"markdownDescription": "%configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions%",
438
"enum": [
439
"never",
440
"onDoubleHash",
441
"onSingleOrDoubleHash"
442
],
443
"markdownEnumDescriptions": [
444
"%configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.never%",
445
"%configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onDoubleHash%",
446
"%configuration.markdown.suggest.paths.includeWorkspaceHeaderCompletions.onSingleOrDoubleHash%"
447
]
448
},
449
"markdown.trace.server": {
450
"type": "string",
451
"scope": "window",
452
"enum": [
453
"off",
454
"messages",
455
"verbose"
456
],
457
"default": "off",
458
"description": "%markdown.trace.server.desc%"
459
},
460
"markdown.server.log": {
461
"type": "string",
462
"scope": "window",
463
"enum": [
464
"off",
465
"debug",
466
"trace"
467
],
468
"default": "off",
469
"description": "%markdown.server.log.desc%"
470
},
471
"markdown.editor.drop.enabled": {
472
"type": "string",
473
"scope": "resource",
474
"markdownDescription": "%configuration.markdown.editor.drop.enabled%",
475
"default": "smart",
476
"enum": [
477
"always",
478
"smart",
479
"never"
480
],
481
"markdownEnumDescriptions": [
482
"%configuration.markdown.editor.drop.enabled.always%",
483
"%configuration.markdown.editor.drop.enabled.smart%",
484
"%configuration.markdown.editor.drop.enabled.never%"
485
]
486
},
487
"markdown.editor.drop.copyIntoWorkspace": {
488
"type": "string",
489
"markdownDescription": "%configuration.markdown.editor.drop.copyIntoWorkspace%",
490
"default": "mediaFiles",
491
"enum": [
492
"mediaFiles",
493
"never"
494
],
495
"markdownEnumDescriptions": [
496
"%configuration.copyIntoWorkspace.mediaFiles%",
497
"%configuration.copyIntoWorkspace.never%"
498
]
499
},
500
"markdown.editor.filePaste.enabled": {
501
"type": "string",
502
"scope": "resource",
503
"markdownDescription": "%configuration.markdown.editor.filePaste.enabled%",
504
"default": "smart",
505
"enum": [
506
"always",
507
"smart",
508
"never"
509
],
510
"markdownEnumDescriptions": [
511
"%configuration.markdown.editor.filePaste.enabled.always%",
512
"%configuration.markdown.editor.filePaste.enabled.smart%",
513
"%configuration.markdown.editor.filePaste.enabled.never%"
514
]
515
},
516
"markdown.editor.filePaste.copyIntoWorkspace": {
517
"type": "string",
518
"markdownDescription": "%configuration.markdown.editor.filePaste.copyIntoWorkspace%",
519
"default": "mediaFiles",
520
"enum": [
521
"mediaFiles",
522
"never"
523
],
524
"markdownEnumDescriptions": [
525
"%configuration.copyIntoWorkspace.mediaFiles%",
526
"%configuration.copyIntoWorkspace.never%"
527
]
528
},
529
"markdown.editor.filePaste.videoSnippet": {
530
"type": "string",
531
"markdownDescription": "%configuration.markdown.editor.filePaste.videoSnippet%",
532
"default": "<video controls src=\"${src}\" title=\"${title}\"></video>"
533
},
534
"markdown.editor.filePaste.audioSnippet": {
535
"type": "string",
536
"markdownDescription": "%configuration.markdown.editor.filePaste.audioSnippet%",
537
"default": "<audio controls src=\"${src}\" title=\"${title}\"></audio>"
538
},
539
"markdown.editor.pasteUrlAsFormattedLink.enabled": {
540
"type": "string",
541
"scope": "resource",
542
"markdownDescription": "%configuration.markdown.editor.pasteUrlAsFormattedLink.enabled%",
543
"default": "smartWithSelection",
544
"enum": [
545
"always",
546
"smart",
547
"smartWithSelection",
548
"never"
549
],
550
"markdownEnumDescriptions": [
551
"%configuration.pasteUrlAsFormattedLink.always%",
552
"%configuration.pasteUrlAsFormattedLink.smart%",
553
"%configuration.pasteUrlAsFormattedLink.smartWithSelection%",
554
"%configuration.pasteUrlAsFormattedLink.never%"
555
]
556
},
557
"markdown.validate.enabled": {
558
"type": "boolean",
559
"scope": "resource",
560
"description": "%configuration.markdown.validate.enabled.description%",
561
"default": false
562
},
563
"markdown.validate.referenceLinks.enabled": {
564
"type": "string",
565
"scope": "resource",
566
"markdownDescription": "%configuration.markdown.validate.referenceLinks.enabled.description%",
567
"default": "warning",
568
"enum": [
569
"ignore",
570
"warning",
571
"error"
572
]
573
},
574
"markdown.validate.fragmentLinks.enabled": {
575
"type": "string",
576
"scope": "resource",
577
"markdownDescription": "%configuration.markdown.validate.fragmentLinks.enabled.description%",
578
"default": "warning",
579
"enum": [
580
"ignore",
581
"warning",
582
"error"
583
]
584
},
585
"markdown.validate.fileLinks.enabled": {
586
"type": "string",
587
"scope": "resource",
588
"markdownDescription": "%configuration.markdown.validate.fileLinks.enabled.description%",
589
"default": "warning",
590
"enum": [
591
"ignore",
592
"warning",
593
"error"
594
]
595
},
596
"markdown.validate.fileLinks.markdownFragmentLinks": {
597
"type": "string",
598
"scope": "resource",
599
"markdownDescription": "%configuration.markdown.validate.fileLinks.markdownFragmentLinks.description%",
600
"default": "inherit",
601
"enum": [
602
"inherit",
603
"ignore",
604
"warning",
605
"error"
606
]
607
},
608
"markdown.validate.ignoredLinks": {
609
"type": "array",
610
"scope": "resource",
611
"markdownDescription": "%configuration.markdown.validate.ignoredLinks.description%",
612
"items": {
613
"type": "string"
614
}
615
},
616
"markdown.validate.unusedLinkDefinitions.enabled": {
617
"type": "string",
618
"scope": "resource",
619
"markdownDescription": "%configuration.markdown.validate.unusedLinkDefinitions.description%",
620
"default": "hint",
621
"enum": [
622
"ignore",
623
"hint",
624
"warning",
625
"error"
626
]
627
},
628
"markdown.validate.duplicateLinkDefinitions.enabled": {
629
"type": "string",
630
"scope": "resource",
631
"markdownDescription": "%configuration.markdown.validate.duplicateLinkDefinitions.description%",
632
"default": "warning",
633
"enum": [
634
"ignore",
635
"warning",
636
"error"
637
]
638
},
639
"markdown.updateLinksOnFileMove.enabled": {
640
"type": "string",
641
"enum": [
642
"prompt",
643
"always",
644
"never"
645
],
646
"markdownEnumDescriptions": [
647
"%configuration.markdown.updateLinksOnFileMove.enabled.prompt%",
648
"%configuration.markdown.updateLinksOnFileMove.enabled.always%",
649
"%configuration.markdown.updateLinksOnFileMove.enabled.never%"
650
],
651
"default": "never",
652
"markdownDescription": "%configuration.markdown.updateLinksOnFileMove.enabled%",
653
"scope": "window"
654
},
655
"markdown.updateLinksOnFileMove.include": {
656
"type": "array",
657
"markdownDescription": "%configuration.markdown.updateLinksOnFileMove.include%",
658
"scope": "window",
659
"items": {
660
"type": "string",
661
"description": "%configuration.markdown.updateLinksOnFileMove.include.property%"
662
},
663
"default": [
664
"**/*.{md,mkd,mdwn,mdown,markdown,markdn,mdtxt,mdtext,workbook}",
665
"**/*.{jpg,jpe,jpeg,png,bmp,gif,ico,webp,avif,tiff,svg,mp4}"
666
]
667
},
668
"markdown.updateLinksOnFileMove.enableForDirectories": {
669
"type": "boolean",
670
"default": true,
671
"description": "%configuration.markdown.updateLinksOnFileMove.enableForDirectories%",
672
"scope": "window"
673
},
674
"markdown.occurrencesHighlight.enabled": {
675
"type": "boolean",
676
"default": false,
677
"description": "%configuration.markdown.occurrencesHighlight.enabled%",
678
"scope": "resource"
679
},
680
"markdown.copyFiles.destination": {
681
"type": "object",
682
"markdownDescription": "%configuration.markdown.copyFiles.destination%",
683
"additionalProperties": {
684
"type": "string"
685
}
686
},
687
"markdown.copyFiles.overwriteBehavior": {
688
"type": "string",
689
"markdownDescription": "%configuration.markdown.copyFiles.overwriteBehavior%",
690
"default": "nameIncrementally",
691
"enum": [
692
"nameIncrementally",
693
"overwrite"
694
],
695
"markdownEnumDescriptions": [
696
"%configuration.markdown.copyFiles.overwriteBehavior.nameIncrementally%",
697
"%configuration.markdown.copyFiles.overwriteBehavior.overwrite%"
698
]
699
},
700
"markdown.preferredMdPathExtensionStyle": {
701
"type": "string",
702
"default": "auto",
703
"markdownDescription": "%configuration.markdown.preferredMdPathExtensionStyle%",
704
"enum": [
705
"auto",
706
"includeExtension",
707
"removeExtension"
708
],
709
"markdownEnumDescriptions": [
710
"%configuration.markdown.preferredMdPathExtensionStyle.auto%",
711
"%configuration.markdown.preferredMdPathExtensionStyle.includeExtension%",
712
"%configuration.markdown.preferredMdPathExtensionStyle.removeExtension%"
713
]
714
},
715
"markdown.editor.updateLinksOnPaste.enabled": {
716
"type": "boolean",
717
"markdownDescription": "%configuration.markdown.editor.updateLinksOnPaste.enabled%",
718
"scope": "resource",
719
"default": true
720
}
721
}
722
},
723
"configurationDefaults": {
724
"[markdown]": {
725
"editor.wordWrap": "on",
726
"editor.quickSuggestions": {
727
"comments": "off",
728
"strings": "off",
729
"other": "off"
730
}
731
}
732
},
733
"jsonValidation": [
734
{
735
"fileMatch": "package.json",
736
"url": "./schemas/package.schema.json"
737
}
738
],
739
"markdown.previewStyles": [
740
"./media/markdown.css",
741
"./media/highlight.css"
742
],
743
"markdown.previewScripts": [
744
"./media/index.js"
745
],
746
"customEditors": [
747
{
748
"viewType": "vscode.markdown.preview.editor",
749
"displayName": "Markdown Preview",
750
"priority": "option",
751
"selector": [
752
{
753
"filenamePattern": "*.md"
754
}
755
]
756
}
757
]
758
},
759
"scripts": {
760
"compile": "gulp compile-extension:markdown-language-features-languageService && gulp compile-extension:markdown-language-features && npm run build-preview && npm run build-notebook",
761
"watch": "npm run build-preview && gulp watch-extension:markdown-language-features watch-extension:markdown-language-features-languageService",
762
"vscode:prepublish": "npm run build-ext && npm run build-preview",
763
"build-ext": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.mjs compile-extension:markdown-language-features ./tsconfig.json",
764
"build-notebook": "node ./esbuild-notebook.mjs",
765
"build-preview": "node ./esbuild-preview.mjs",
766
"compile-web": "npx webpack-cli --config extension-browser.webpack.config --mode none",
767
"watch-web": "npx webpack-cli --config extension-browser.webpack.config --mode none --watch"
768
},
769
"dependencies": {
770
"@vscode/extension-telemetry": "^0.9.8",
771
"dompurify": "^3.2.7",
772
"highlight.js": "^11.8.0",
773
"markdown-it": "^12.3.2",
774
"markdown-it-front-matter": "^0.2.4",
775
"morphdom": "^2.7.4",
776
"picomatch": "^2.3.1",
777
"punycode": "^2.3.1",
778
"vscode-languageclient": "^8.0.2",
779
"vscode-languageserver-textdocument": "^1.0.11",
780
"vscode-markdown-languageserver": "^0.5.0-alpha.12",
781
"vscode-uri": "^3.0.3"
782
},
783
"devDependencies": {
784
"@types/dompurify": "^3.0.5",
785
"@types/lodash.throttle": "^4.1.9",
786
"@types/markdown-it": "12.2.3",
787
"@types/node": "22.x",
788
"@types/picomatch": "^2.3.0",
789
"@types/vscode-notebook-renderer": "^1.60.0",
790
"@types/vscode-webview": "^1.57.0",
791
"@vscode/markdown-it-katex": "^1.1.1",
792
"lodash.throttle": "^4.1.1",
793
"vscode-languageserver-types": "^3.17.2",
794
"vscode-markdown-languageservice": "^0.3.0-alpha.3"
795
},
796
"repository": {
797
"type": "git",
798
"url": "https://github.com/microsoft/vscode.git"
799
}
800
}
801
802