joplin-plugin-rich-tables 1.1.1 → 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
@@ -5,7 +5,7 @@
5
5
 
6
6
  A Joplin plugin to provide table rendering & table editing in the Markdown editor.
7
7
 
8
- ![example](https://github.com/user-attachments/assets/e16608bf-ec86-4083-b47a-bab0d15e6f9e)
8
+ ![example](https://github.com/user-attachments/assets/a68f8de5-7acb-43b8-9e5a-ad81adf8857f)
9
9
 
10
10
  ## Features
11
11
 
@@ -25,19 +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
- ### Important Notes/Limitations
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
- #### Table limitations
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).
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.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.1.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:b798c149c563aefb5f8752d6c9eaef32692a5e17f7ea2ffea7f8671cab066e51",
47
- "_publish_commit": "main:6f28fbf037328d3317292fd7172ae13e5a50e67e"
46
+ "_publish_hash": "sha256:5ce6815552f21d2c2044f046fd3e16f905323681b3119dc4331290f609445ffa",
47
+ "_publish_commit": "main:b60f960678d1af8275894952abf453d0a886d518"
48
48
  }