{ "name": "vscode-markdown", "displayName": "VS Code Markdown", "description": "Markdown for VS Code", "version": "0.2.0", "publisher": "Microsoft", "engines": { "vscode": "^1.0.0" }, "main": "./out/extension", "categories": [ "Languages" ], "activationEvents": [ "onCommand:markdown.showPreview", "onCommand:markdown.showPreviewToSide" ], "contributes": { "languages": [ { "id": "markdown", "aliases": [ "Markdown", "markdown" ], "extensions": [ ".md", ".mdown", ".markdown", ".markdn" ], "configuration": "./markdown.configuration.json" } ], "grammars": [ { "language": "markdown", "scopeName": "text.html.markdown", "path": "./syntaxes/markdown.tmLanguage" } ], "commands": [ { "command": "markdown.showPreview", "title": "%markdown.previewMarkdown.title%", "category": "%markdown.category%", "icon": { "light": "./media/Preview.svg", "dark": "./media/Preview_inverse.svg" }, "when": "resourceLangId == markdown", "where": "editor/primary" }, { "command": "markdown.showSource", "title": "%markdown.previewMarkdown.title%", "category": "%markdown.category%", "icon": { "light": "./media/ViewSource.svg", "dark": "./media/ViewSource_inverse.svg" }, "when": "resourceScheme == markdown", "where": "editor/primary" }, { "command": "markdown.showPreviewToSide", "title": "%markdown.previewMarkdownSide.title%", "when": "resourceLangId == markdown", "where": "editor/secondary" } ], "keybindings": [ { "command": "markdown.showPreview", "key": "shift+ctrl+v", "mac": "shift+cmd+v" }, { "command": "markdown.showPreviewToSide", "key": "ctrl+k v", "mac": "cmd+k v" } ], "snippets": [{ "language": "markdown", "path": "./snippets/markdown.json" }], "configuration": { "type": "object", "title": "Markdown preview configuration", "properties": { "markdown.styles": { "type": "array", "default" : null, "description": "A list of URLs or local paths to CSS style sheets to use from the markdown preview." } } } }, "scripts": { "vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:markdown ./tsconfig.json" }, "dependencies": { "highlight.js": "^9.3.0", "markdown-it": "^6.0.1", "markdown-it-named-headers": "0.0.4" } }