joplin-plugin-rich-tables 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
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
A Joplin plugin to provide table rendering & table editing in the Markdown editor.
|
|
7
7
|
|
|
8
|
-

|
|
9
9
|
|
|
10
10
|
## Features
|
|
11
11
|
|
|
@@ -31,13 +31,3 @@ Provides table editing from the rendered HTML table similar to the Rich text edi
|
|
|
31
31
|
|
|
32
32
|
- Only supports markdown tables (GFM). Doesn't support HTML tables, multi-markdown table extensions, etc...
|
|
33
33
|
- Limited support for multi-line content (you can use shift + enter to add a `<br>` and newlines will be converted to `<br>` for pasted content, but they aren't rendered as line breaks during editing).
|
|
34
|
-
|
|
35
|
-
#### Editing limitations
|
|
36
|
-
|
|
37
|
-
In order to provide table editing, the plugin uses a nested codemirror editor subview. Because of this, the following limitations are present:
|
|
38
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.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
|
|
@@ -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.1.
|
|
5
|
+
"version": "1.1.2",
|
|
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:6ebf36b6ce9aa9ec387e8c0ae629970deb4baebae183bc8a6f8e912185052286",
|
|
47
|
+
"_publish_commit": "main:654619ece72a483c49754ff7190d871022e981c0"
|
|
48
48
|
}
|