[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.

Publish v1.0.0

+43 -33
+5 -1
README.md
··· 1 1 This extension will copy the currently selected markdown text to the clipboard as HTML. If no text is selected, the contents of the current document will be copied as HTML. 2 2 3 + ## Usage 4 + 5 + Open the Command Palette ('Ctrl+Shift+P'/'Cmd+Shift+P') and search for the command "Markdown: Copy as HTML" 6 + 3 7 ## Changelog 4 8 5 - ### 0.0.1 9 + ### 1.0.0 6 10 7 11 Initial release of the extension
+38 -32
package.json
··· 1 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 - "version": "0.0.1", 6 - "publisher": "jerriepelser", 7 - "engines": { 8 - "vscode": "^1.0.0" 9 - }, 10 - "categories": [ 11 - "Other" 12 - ], 13 - "activationEvents": [ 14 - "onCommand:extension.copyAsHtml" 15 - ], 16 - "main": "./extension", 17 - "contributes": { 18 - "commands": [ 19 - { 20 - "command": "extension.copyAsHtml", 21 - "title": "Markdown: Copy as HTML" 22 - } 23 - ] 24 - }, 25 - "scripts": { 26 - "postinstall": "node ./node_modules/vscode/bin/install" 27 - }, 28 - "devDependencies": { 29 - "copy-paste": "^1.3.0", 30 - "marked": "^0.3.6", 31 - "vscode": "^0.11.0" 32 - } 33 - } 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/RockstarLabs/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 + "marked": "^0.3.6" 38 + } 39 + }