joplin-plugin-copy-as-html 1.0.18 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ This will strip markdown formatting characters, backslash escapes, and image emb
|
|
|
39
39
|
|
|
40
40
|
List leaders and nested list indentation will be maintained (these are normally lost when copying from the markdown viewer or rich text editor).
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
The following options are provided to preserve specific markdown formatting in the text/plain output:
|
|
43
43
|
|
|
44
44
|
- Preserve superscript characters `(^TEST^)`
|
|
45
45
|
If enabled, `^TEST^` will remain `^TEST^` in plain text output.
|
|
@@ -56,6 +56,12 @@ If enabled, `**TEST*`* or `__TEST__` will remain as-is in plain text output.
|
|
|
56
56
|
- Preserve heading characters `(## TEST)`
|
|
57
57
|
If enabled, `## TEST` will remain as-is in plain text output.
|
|
58
58
|
|
|
59
|
+
- Preserve ==mark== in plain text
|
|
60
|
+
If enabled, `==mark==` will remain as-is in plain text output.
|
|
61
|
+
|
|
62
|
+
- Preserve ++insert++ in plain text
|
|
63
|
+
If enabled, `++insert++` will remain as-is in plain text output.
|
|
64
|
+
|
|
59
65
|
As of version 1.0.15, the following options are provided for external hyperlinks (only impacts markdown links containing http/https URL):
|
|
60
66
|
|
|
61
67
|
- Title - Displays link title only (default).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-copy-as-html",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.19",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
|
|
6
6
|
"prepare": "npm run dist",
|
|
Binary file
|
|
@@ -2,17 +2,49 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "com.bwat47.copyashtml",
|
|
4
4
|
"app_min_version": "3.3",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.19",
|
|
6
6
|
"name": "Copy as HTML",
|
|
7
7
|
"description": "Allows you to copy text with HTML (rich text) formatting from the markdown editor without excess styling.",
|
|
8
8
|
"author": "bwat47",
|
|
9
9
|
"homepage_url": "https://github.com/bwat47/joplin-copy-as-html",
|
|
10
10
|
"repository_url": "https://github.com/bwat47/joplin-copy-as-html",
|
|
11
|
-
"keywords": [
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
"keywords": [
|
|
12
|
+
"Copy",
|
|
13
|
+
"HTML",
|
|
14
|
+
"Text"
|
|
15
|
+
],
|
|
16
|
+
"categories": [
|
|
17
|
+
"productivity"
|
|
18
|
+
],
|
|
19
|
+
"screenshots": [
|
|
20
|
+
{
|
|
21
|
+
"src": "images/copy-as-html1.png",
|
|
22
|
+
"label": "Copy as HTML example 1"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"src": "images/copy-as-html2.png",
|
|
26
|
+
"label": "Copy as HTML example 2"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"src": "images/copy-as-plain1.png",
|
|
30
|
+
"label": "Copy as Plain Text example 1"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"src": "images/copy-as-plain2.png",
|
|
34
|
+
"label": "Copy as Plain Text example 2"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"icons": {
|
|
38
|
+
"16": "images/16.png",
|
|
39
|
+
"32": "images/32.png",
|
|
40
|
+
"48": "images/48.png",
|
|
41
|
+
"64": "images/64.png",
|
|
42
|
+
"128": "images/128.png"
|
|
43
|
+
},
|
|
44
|
+
"promo_tile": {
|
|
45
|
+
"src": "images/copyashtml_promo_tile.png",
|
|
46
|
+
"label": "Copy as HTML Promo Tile"
|
|
47
|
+
},
|
|
16
48
|
"settings": {
|
|
17
49
|
"embedImages": {
|
|
18
50
|
"type": "bool",
|
|
@@ -74,6 +106,6 @@
|
|
|
74
106
|
"value": "title"
|
|
75
107
|
}
|
|
76
108
|
},
|
|
77
|
-
"_publish_hash": "sha256:
|
|
78
|
-
"_publish_commit": "main:
|
|
109
|
+
"_publish_hash": "sha256:023771699b66cc878919f677d9e90e8935b8ef4dde19aae57ac87605f86f80ef",
|
|
110
|
+
"_publish_commit": "main:49808cae45b39fdd338a74c9c487a203ad197b89"
|
|
79
111
|
}
|