joplin-plugin-click-to-copy 1.1.0 → 1.1.2
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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This Joplin plugin allows you to create inline click-to-copy text spans.
|
|
4
4
|
|
|
5
|
-
**Version**: 1.
|
|
5
|
+
**Version**: 1.1.2
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -21,7 +21,7 @@ This Joplin plugin allows you to create inline click-to-copy text spans.
|
|
|
21
21
|
|
|
22
22
|
### Click-to-copy spans
|
|
23
23
|
|
|
24
|
-
In order to create a
|
|
24
|
+
In order to create a Click-to-Copy Span, you can:
|
|
25
25
|
- press on the `Click-to-Copy Span` toolbar button to create a template span, or
|
|
26
26
|
- highlight text then press on the `Click-to-Copy Span` toolbar button to convert it to a span, or
|
|
27
27
|
- or manually type in the following format:
|
|
@@ -54,7 +54,7 @@ If you would like to style the collapsible blocks to your preference, use the fo
|
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
## Settings
|
|
57
|
-
There is a settings page for the plugin in the Joplin options. There, you can customize the start and end tokens away from the default `[[` and `]]`.
|
|
57
|
+
There is a settings page for the plugin in the Joplin options. There, you can customize the start and end tokens away from the default `[[` and `]]`. You can also disable having the spans appear in the editor if you'd prefer only the raw text there.
|
|
58
58
|
|
|
59
59
|
## Notes
|
|
60
60
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-click-to-copy",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
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
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"manifest_version": 1,
|
|
3
|
-
"id": "joplin.
|
|
3
|
+
"id": "com.joplin.click.to.copy",
|
|
4
4
|
"app_min_version": "3.2",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.2",
|
|
6
6
|
"name": "Click to copy",
|
|
7
7
|
"description": "Create text spans which are click-to-copy.",
|
|
8
8
|
"author": "ntczkjfg",
|
|
@@ -20,6 +20,6 @@
|
|
|
20
20
|
"desktop",
|
|
21
21
|
"mobile"
|
|
22
22
|
],
|
|
23
|
-
"_publish_hash": "sha256:
|
|
24
|
-
"_publish_commit": ""
|
|
23
|
+
"_publish_hash": "sha256:be2e1b6302ed7c998caf18dd4859aa721e3dee77948d94c01ef7e5ac396793c8",
|
|
24
|
+
"_publish_commit": "master:19779ee16bce6da9b98198364bd6fe95611d49c1"
|
|
25
25
|
}
|