joplin-plugin-markmap 1.0.1 → 1.0.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
|
@@ -8,11 +8,13 @@ This plugin allows the usage of markmap to visualize the current note in form of
|
|
|
8
8
|
To access the mindmap open the note and click on the diagram icon seen in the taskbar.
|
|
9
9
|
Zooming as well as paning can be done with the mouse.
|
|
10
10
|
Each node is collapseable by clicking on it.
|
|
11
|
+
Currently it is only possible to export the mindmap to a html file.
|
|
11
12
|
|
|
12
13
|
## TODO
|
|
13
14
|
- [ ] Save to various formats (SVG, PNG, to note itself)
|
|
14
15
|
- [ ] Save to SVG
|
|
15
16
|
- [ ] Save to PNG
|
|
17
|
+
- [x] Save to HTML
|
|
16
18
|
- [ ] Save to to note
|
|
17
19
|
- [ ] show control indicators (zoom, move in a direction)
|
|
18
20
|
- [ ] Explain controls on the mindmap
|
|
@@ -21,7 +23,7 @@ Each node is collapseable by clicking on it.
|
|
|
21
23
|
- [x] License
|
|
22
24
|
|
|
23
25
|
## Known bugs
|
|
24
|
-
- Because of note sanitization some math commands (e.g. \lt) are not visualised correctly (e.g.
|
|
26
|
+
- Because of note sanitization some math commands (e.g. \lt) are not visualised correctly (e.g. `<`)
|
|
25
27
|
|
|
26
28
|
## Joplin Plugin Development
|
|
27
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-markmap",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dist": "webpack --joplin-plugin-config buildMain && webpack --joplin-plugin-config buildExtraScripts && webpack --joplin-plugin-config createArchive",
|
|
6
6
|
"prepare": "npm run dist",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"dompurify": "^3.0.1",
|
|
32
|
+
"file-saver-es": "^2.0.5",
|
|
32
33
|
"uuid": "^9.0.0"
|
|
33
34
|
}
|
|
34
|
-
}
|
|
35
|
+
}
|
|
Binary file
|
|
@@ -10,6 +10,6 @@
|
|
|
10
10
|
"repository_url": "https://git.fomin.site/daniel/joplin-markmap",
|
|
11
11
|
"keywords": [],
|
|
12
12
|
"categories": [],
|
|
13
|
-
"_publish_hash": "sha256:
|
|
14
|
-
"_publish_commit": "main:
|
|
13
|
+
"_publish_hash": "sha256:6721eb48d99fc7202d68d1d98cb0074838162110e3c6852de21a77233c53bc6f",
|
|
14
|
+
"_publish_commit": "main:2dd5c3efa4f74a598a0cffb2848ce575411a5239"
|
|
15
15
|
}
|