joplin-plugin-rich-tables 1.1.2 → 1.2.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
|
@@ -25,9 +25,18 @@ Provides table editing from the rendered HTML table similar to the Rich text edi
|
|
|
25
25
|
- Changing column alignment (left/center/right)
|
|
26
26
|
- Format table (currently just normalizes whitespace to one space around cell content, no full-on pretty formatting currently).
|
|
27
27
|
|
|
28
|
-
###
|
|
28
|
+
### Keyboard Shortcuts
|
|
29
|
+
|
|
30
|
+
| Action | Shortcut |
|
|
31
|
+
| :--------------------------- | :----------------------------------- |
|
|
32
|
+
| **Insert Table** | `Alt + Shift + T` |
|
|
33
|
+
| **Insert Row Above/Below** | `Alt + Shift + Up` / `Down` |
|
|
34
|
+
| **Insert Column Left/Right** | `Alt + Shift + Left` / `Right` |
|
|
35
|
+
| **Delete Row** | `Alt + Shift + D` |
|
|
36
|
+
| **Delete Column** | `Ctrl + Alt + Shift + D` |
|
|
37
|
+
| **Align Left/Center/Right** | `Ctrl + Alt + Left` / `Up` / `Right` |
|
|
29
38
|
|
|
30
|
-
|
|
39
|
+
### Important Notes/Limitations
|
|
31
40
|
|
|
32
41
|
- Only supports markdown tables (GFM). Doesn't support HTML tables, multi-markdown table extensions, etc...
|
|
33
42
|
- 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).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-rich-tables",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.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",
|
|
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.
|
|
5
|
+
"version": "1.2.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:5ce6815552f21d2c2044f046fd3e16f905323681b3119dc4331290f609445ffa",
|
|
47
|
+
"_publish_commit": "main:b60f960678d1af8275894952abf453d0a886d518"
|
|
48
48
|
}
|