joplin-plugin-rich-tables 1.2.4 → 1.3.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
|
@@ -22,6 +22,8 @@ Provides table editing from the rendered HTML table similar to the Rich text edi
|
|
|
22
22
|
- Editing table cells (with syntax highlighting for markdown)
|
|
23
23
|
- Adding/Deleting rows
|
|
24
24
|
- Adding/Deleting columns
|
|
25
|
+
- Moving rows (up/down)
|
|
26
|
+
- Moving columns (left/right)
|
|
25
27
|
- Changing column alignment (left/center/right)
|
|
26
28
|
- Format table (currently just normalizes whitespace to one space around cell content, no full-on pretty formatting currently).
|
|
27
29
|
|
|
@@ -34,6 +36,8 @@ Provides table editing from the rendered HTML table similar to the Rich text edi
|
|
|
34
36
|
| **Insert Column Left/Right** | `Alt + Shift + Left` / `Right` |
|
|
35
37
|
| **Delete Row** | `Alt + Shift + D` |
|
|
36
38
|
| **Delete Column** | `Ctrl + Alt + Shift + D` |
|
|
39
|
+
| **Move Row Up/Down** | `Alt + Up` / `Down` |
|
|
40
|
+
| **Move Column Left/Right** | `Alt + Left` / `Right` |
|
|
37
41
|
| **Align Left/Center/Right** | `Ctrl + Alt + Left` / `Up` / `Right` |
|
|
38
42
|
|
|
39
43
|
### Important Notes/Limitations
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-rich-tables",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.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.3.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:6820c126da894711fa8869d73409d8577937f005c6d9a8a27f04bfa72e9c9262",
|
|
47
|
+
"_publish_commit": "main:879c53448e97f310dfa8f53c7410a58c7b535827"
|
|
48
48
|
}
|