joplin-plugin-copy-as-html 1.0.1 → 1.0.5
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
|
@@ -22,6 +22,15 @@ By default, the plugin will embed any images as base64 in the text/html output,
|
|
|
22
22
|
|
|
23
23
|
This should work with both markdown image embeds and the html img src embeds that you get when resizing images via joplin's rich text editor.
|
|
24
24
|
|
|
25
|
+
### Optional markdown syntax
|
|
26
|
+
|
|
27
|
+
The plugin will adhere to Joplin's settings for:
|
|
28
|
+
|
|
29
|
+
- Soft Breaks
|
|
30
|
+
- ^sup^
|
|
31
|
+
- ~sub~
|
|
32
|
+
- ==mark==
|
|
33
|
+
|
|
25
34
|
## Copy as Plain Text
|
|
26
35
|
|
|
27
36
|
"Copy selection as Plain Text" is provided as a right click context menu option and as a keyboard shortcut (ctrl + alt + c by 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.5",
|
|
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,7 +2,7 @@
|
|
|
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.5",
|
|
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",
|
|
@@ -21,6 +21,6 @@
|
|
|
21
21
|
"value": true
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
|
-
"_publish_hash": "sha256:
|
|
25
|
-
"_publish_commit": "main:
|
|
24
|
+
"_publish_hash": "sha256:4b6ca0bf8943cbb58cd66f8b01f7304ebf6a41269ae040891d900940bb2c33c4",
|
|
25
|
+
"_publish_commit": "main:6a4dbd91d91803c1420398d170eff5ef5540ec41"
|
|
26
26
|
}
|