joplin-plugin-rich-tables 1.4.3 → 1.5.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
|
@@ -15,6 +15,9 @@ Tables are rendered as HTML in the markdown editor, allowing you to see the HTML
|
|
|
15
15
|
|
|
16
16
|
Table rendering includes rendering of inline markdown and image embeds.
|
|
17
17
|
|
|
18
|
+
> [!note]
|
|
19
|
+
> Table rendering can be temporarily disabled by toggling "source mode" via toolbar button or keyboard shortcut.
|
|
20
|
+
|
|
18
21
|
#### Supported markdown syntax for rendered tables
|
|
19
22
|
|
|
20
23
|
- Basic formatting: bold/italic/inline code/strikethrough/highlight(==mark==)/underline(++insert++).
|
|
@@ -52,6 +55,7 @@ Provides table editing from the rendered HTML table similar to the Rich text edi
|
|
|
52
55
|
| **Move Row Up/Down** | `Alt + Up` / `Down` |
|
|
53
56
|
| **Move Column Left/Right** | `Alt + Left` / `Right` |
|
|
54
57
|
| **Align Left/Center/Right** | `Ctrl + Alt + Left` / `Up` / `Right` |
|
|
58
|
+
| **Source Mode** | `Ctrl + Shift + /` |
|
|
55
59
|
|
|
56
60
|
- **Tab/Shift Tab:** Cycle through table cells in order/reverse order. Tab on last row/column will create a new row.
|
|
57
61
|
- **Arrow Keys:** Navigate within text in table cell, and navigate to next cell (based on arrow direction) when reaching cell boundary.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-rich-tables",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.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.
|
|
5
|
+
"version": "1.5.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:9b33737764ebd4f22ae45ed74a4a33ab1a7e54a34b1d6b2bd7734a215184ee9b",
|
|
47
|
+
"_publish_commit": "main:98ff0078533de1c1a004626c2ac305942ffbe916"
|
|
48
48
|
}
|