[READ-ONLY] Mirror of https://github.com/mrgnw/copy-markdown-as-html. VS Code plugin which copies the selected markdown text to the clipboard as HTML
0

Configure Feed

Select the types of activity you want to include in your feed.

1{ 2 "name": "copy-markdown-as-html", 3 "displayName": "Copy Markdown as HTML", 4 "description": "Copies the selected markdown text to the clipboard as HTML", 5 "repository": { 6 "type": "git", 7 "url": "https://github.com/jerriep/copy-markdown-as-html" 8 }, 9 "version": "1.0.0", 10 "publisher": "jerriepelser", 11 "engines": { 12 "vscode": "^1.0.0" 13 }, 14 "categories": [ 15 "Other" 16 ], 17 "activationEvents": [ 18 "onCommand:extension.copyAsHtml" 19 ], 20 "main": "./extension", 21 "contributes": { 22 "commands": [ 23 { 24 "command": "extension.copyAsHtml", 25 "title": "Markdown: Copy as HTML" 26 } 27 ] 28 }, 29 "scripts": { 30 "postinstall": "node ./node_modules/vscode/bin/install" 31 }, 32 "devDependencies": { 33 "vscode": "^0.11.0" 34 }, 35 "dependencies": { 36 "copy-paste": "^1.3.0", 37 "markdown-it": "^8.4.1" 38 } 39}