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