···
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
3
+
## Usage
4
4
+
5
5
+
Open the Command Palette ('Ctrl+Shift+P'/'Cmd+Shift+P') and search for the command "Markdown: Copy as HTML"
6
6
+
3
7
## Changelog
4
8
5
5
-
### 0.0.1
9
9
+
### 1.0.0
6
10
7
11
Initial release of the extension
···
1
1
{
2
2
-
"name": "copy-markdown-as-html",
3
3
-
"displayName": "copy-markdown-as-html",
4
4
-
"description": "Copies the selected markdown text to the clipboard as HTML",
5
5
-
"version": "0.0.1",
6
6
-
"publisher": "jerriepelser",
7
7
-
"engines": {
8
8
-
"vscode": "^1.0.0"
9
9
-
},
10
10
-
"categories": [
11
11
-
"Other"
12
12
-
],
13
13
-
"activationEvents": [
14
14
-
"onCommand:extension.copyAsHtml"
15
15
-
],
16
16
-
"main": "./extension",
17
17
-
"contributes": {
18
18
-
"commands": [
19
19
-
{
20
20
-
"command": "extension.copyAsHtml",
21
21
-
"title": "Markdown: Copy as HTML"
22
22
-
}
23
23
-
]
24
24
-
},
25
25
-
"scripts": {
26
26
-
"postinstall": "node ./node_modules/vscode/bin/install"
27
27
-
},
28
28
-
"devDependencies": {
29
29
-
"copy-paste": "^1.3.0",
30
30
-
"marked": "^0.3.6",
31
31
-
"vscode": "^0.11.0"
32
32
-
}
33
33
-
}
2
2
+
"name": "copy-markdown-as-html",
3
3
+
"displayName": "Copy Markdown as HTML",
4
4
+
"description": "Copies the selected markdown text to the clipboard as HTML",
5
5
+
"repository": {
6
6
+
"type": "git",
7
7
+
"url": "https://github.com/RockstarLabs/copy-markdown-as-html"
8
8
+
},
9
9
+
"version": "1.0.0",
10
10
+
"publisher": "jerriepelser",
11
11
+
"engines": {
12
12
+
"vscode": "^1.0.0"
13
13
+
},
14
14
+
"categories": [
15
15
+
"Other"
16
16
+
],
17
17
+
"activationEvents": [
18
18
+
"onCommand:extension.copyAsHtml"
19
19
+
],
20
20
+
"main": "./extension",
21
21
+
"contributes": {
22
22
+
"commands": [
23
23
+
{
24
24
+
"command": "extension.copyAsHtml",
25
25
+
"title": "Markdown: Copy as HTML"
26
26
+
}
27
27
+
]
28
28
+
},
29
29
+
"scripts": {
30
30
+
"postinstall": "node ./node_modules/vscode/bin/install"
31
31
+
},
32
32
+
"devDependencies": {
33
33
+
"vscode": "^0.11.0"
34
34
+
},
35
35
+
"dependencies": {
36
36
+
"copy-paste": "^1.3.0",
37
37
+
"marked": "^0.3.6"
38
38
+
}
39
39
+
}