joplin-plugin-copy-as-html 1.4.2 → 1.4.3
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
|
@@ -77,9 +77,9 @@ The plugin will adhere to Joplin's settings for whether or not to render:
|
|
|
77
77
|
- Multimarkdown Table
|
|
78
78
|
|
|
79
79
|
> [!note]
|
|
80
|
-
> Mermaid/Math are not supported, they will render as plain text
|
|
80
|
+
> Mermaid/Math are not supported, they will render as plain text.
|
|
81
81
|
|
|
82
|
-
### Freehand Drawing/Excalidraw
|
|
82
|
+
### Freehand Drawing/Excalidraw/Drawio
|
|
83
83
|
|
|
84
84
|
These plugins embed the drawings as joplin image resources (svg), and the plugin will embed them as base64 as it does other images.
|
|
85
85
|
|
|
@@ -97,7 +97,7 @@ Github Alert syntax, (e.g. `>[!NOTE]`) is supported via the markdown-it-github-a
|
|
|
97
97
|
|
|
98
98
|
This will strip markdown formatting characters, backslash escapes, and image embeds from the source markdown and populate it as text/plain in the clipboard, for scenarios where you need to paste into an app that supports neither HTML formatting or markdown.
|
|
99
99
|
|
|
100
|
-
List leaders and nested list indentation will be maintained (these are normally lost when copying from the markdown viewer or rich text editor).
|
|
100
|
+
List leaders and nested list indentation will be maintained (these are normally lost when copying plain text from the markdown viewer or rich text editor).
|
|
101
101
|
|
|
102
102
|
### Customizing plain text output
|
|
103
103
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-copy-as-html",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
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.4.
|
|
5
|
+
"version": "1.4.3",
|
|
6
6
|
"name": "Copy as HTML",
|
|
7
7
|
"description": "Allows you to copy text with HTML (rich text) formatting from the markdown editor (including images). Also allows you to copy as plain text (without markdown formatting)",
|
|
8
8
|
"author": "bwat47",
|
|
@@ -154,6 +154,6 @@
|
|
|
154
154
|
"value": "spaces"
|
|
155
155
|
}
|
|
156
156
|
},
|
|
157
|
-
"_publish_hash": "sha256:
|
|
158
|
-
"_publish_commit": "main:
|
|
157
|
+
"_publish_hash": "sha256:319d401e10577409595ca8fdff5c5a4816f4845872cd0b87c835eadc48b8924e",
|
|
158
|
+
"_publish_commit": "main:29bc91f15d5883f84040f0c41c06dd04fc8828e7"
|
|
159
159
|
}
|