joplin-plugin-collapsible-blocks 1.0.3 → 1.0.4
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
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Joplin Plugin - Collapsible
|
|
1
|
+
# Joplin Plugin - Collapsible blocks
|
|
2
2
|
|
|
3
3
|
This Joplin plugin allows you to create collapsible blocks with a title and extendable body. The blocks can be nested within each other, remember whether they were left open or closed, and color-coordinate between the editor and webview.
|
|
4
4
|
|
|
5
5
|
Although the blocks this plugin creates are only collapsible in the webview, not the editor, it seems to pair well with the "Extra Markdown Editor Settings" plugin, which does allow for collapsing text in the editor, if "Enable code folding" is enabled in its settings. The collapsible blocks made by this plugin are detected by it as code, and are editor-foldable. If you're nesting collapsible blocks, only the outermost one (in the editor) will be foldable with this method.
|
|
6
6
|
|
|
7
|
-
**Version**: 1.0.
|
|
7
|
+
**Version**: 1.0.4
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
@@ -129,7 +129,7 @@ be applied if "Do Webview Colors" is enabled in the plugin settings */
|
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
## Settings
|
|
132
|
-
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 `}:`, or enable/disable the color coding in the webview and editor.
|
|
132
|
+
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 `}:`, or enable/disable the color coding in the webview and editor. You can also disable the plugin's ability to remember if a collapsible block was last left open or closed in the webview, relying solely on how you define it in the editor.
|
|
133
133
|
|
|
134
134
|
## Notes
|
|
135
135
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-collapsible-blocks",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
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": "joplin.plugin.collapsible.blocks",
|
|
4
4
|
"app_min_version": "3.2",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.4",
|
|
6
6
|
"name": "Collapsible blocks",
|
|
7
7
|
"description": "Create collapsible blocks with title and extendable body.",
|
|
8
8
|
"author": "ntczkjfg",
|
|
@@ -11,14 +11,19 @@
|
|
|
11
11
|
"keywords": [
|
|
12
12
|
"joplin",
|
|
13
13
|
"plugin",
|
|
14
|
+
"collapse",
|
|
14
15
|
"collapsible",
|
|
16
|
+
"collapsing",
|
|
15
17
|
"blocks",
|
|
16
|
-
"details"
|
|
18
|
+
"details",
|
|
19
|
+
"fold",
|
|
20
|
+
"foldable",
|
|
21
|
+
"folding"
|
|
17
22
|
],
|
|
18
23
|
"platforms": [
|
|
19
24
|
"desktop",
|
|
20
25
|
"mobile"
|
|
21
26
|
],
|
|
22
|
-
"_publish_hash": "sha256:
|
|
23
|
-
"_publish_commit": "master:
|
|
27
|
+
"_publish_hash": "sha256:fc09f9f5d39a1d56575ac9b04aaa9e1b8cbceea2329586d55e60c5f8b6cbd9b0",
|
|
28
|
+
"_publish_commit": "master:973d5e18d64fcfff259539fa59b18d888c27a6e4"
|
|
24
29
|
}
|