joplin-plugin-rich-tables 1.0.5 → 1.1.0
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
|
@@ -19,7 +19,7 @@ Table rendering includes rendering of inline markdown and image embeds.
|
|
|
19
19
|
|
|
20
20
|
Provides table editing from the rendered HTML table similar to the Rich text editor. The following operations are supported:
|
|
21
21
|
|
|
22
|
-
- Editing table cells
|
|
22
|
+
- Editing table cells (with syntax highlighting for markdown)
|
|
23
23
|
- Adding/Deleting rows
|
|
24
24
|
- Adding/Deleting columns
|
|
25
25
|
- Changing column alignment (left/center/right)
|
|
@@ -36,10 +36,8 @@ Provides table editing from the rendered HTML table similar to the Rich text edi
|
|
|
36
36
|
|
|
37
37
|
In order to provide table editing, the plugin uses a nested codemirror editor subview. Because of this, the following limitations are present:
|
|
38
38
|
|
|
39
|
-
- Keyboard shortcuts are limited when editing table cells (only basics like ctrl +c, ctrl + v, ctrl + z, ctrl +x)
|
|
39
|
+
- Keyboard shortcuts are limited when editing table cells (only basics like ctrl +c, ctrl + v, ctrl + z, ctrl +x, ctrl + a, ctrl + y). Also supports basic markdown formatting (bold: ctrl + b, italic: ctrl + i, strike: ctrl + shift + u, code: ctrl + `).
|
|
40
40
|
|
|
41
|
-
- Formatting functions from joplin's formatting toolbar will not work properly when editing table cells.
|
|
41
|
+
- Formatting functions from joplin's formatting toolbar will not work properly when editing table cells (they will insert the formatting characters at beginning of the cell instead of wrapping selected text).
|
|
42
42
|
|
|
43
|
-
-
|
|
44
|
-
|
|
45
|
-
- No context menu when editing cells
|
|
43
|
+
- Context menu is only partially functional when editing table cells (cut/copy are always grayed out on desktop, paste works. Both copy/paste do work on android).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-rich-tables",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
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",
|
|
@@ -33,12 +33,14 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@codemirror/commands": "^6.10.0",
|
|
36
|
+
"@codemirror/lang-markdown": "^6.5.0",
|
|
36
37
|
"@codemirror/language": "^6.11.3",
|
|
37
38
|
"@codemirror/state": "^6.5.2",
|
|
38
39
|
"@codemirror/view": "^6.38.8",
|
|
39
40
|
"@eslint/eslintrc": "^3.3.1",
|
|
40
41
|
"@eslint/js": "^9.39.1",
|
|
41
42
|
"@floating-ui/dom": "^1.7.4",
|
|
43
|
+
"@lezer/markdown": "^1.6.1",
|
|
42
44
|
"@types/jest": "^30.0.0",
|
|
43
45
|
"@types/node": "^24.10.0",
|
|
44
46
|
"@typescript-eslint/eslint-plugin": "^8.46.3",
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "com.bwat47.rich-tables",
|
|
4
4
|
"app_min_version": "3.3",
|
|
5
|
-
"version": "1.0
|
|
5
|
+
"version": "1.1.0",
|
|
6
6
|
"platforms": [
|
|
7
7
|
"desktop",
|
|
8
8
|
"mobile"
|
|
@@ -43,6 +43,6 @@
|
|
|
43
43
|
"src": "images/promo.png",
|
|
44
44
|
"label": "Rich Tables Promo Tile"
|
|
45
45
|
},
|
|
46
|
-
"_publish_hash": "sha256:
|
|
47
|
-
"_publish_commit": "main:
|
|
46
|
+
"_publish_hash": "sha256:6d6856564ea0466daca168ac942e4bad52aeb380b1b735506f57c27ce290ea45",
|
|
47
|
+
"_publish_commit": "main:d7167deb9768239686df6a4239da0a71214f6ea2"
|
|
48
48
|
}
|