joplin-plugin-rich-tables 1.4.2 → 1.4.3
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
|
@@ -19,15 +19,11 @@ Table rendering includes rendering of inline markdown and image embeds.
|
|
|
19
19
|
|
|
20
20
|
- Basic formatting: bold/italic/inline code/strikethrough/highlight(==mark==)/underline(++insert++).
|
|
21
21
|
- Links (markdown links, autolinks, reference style links).
|
|
22
|
-
- Footnotes: Note that footnotes support is very basic. Table cells are rendered in isolation, which breaks markdown-it-footnote's footnote numbering, so the plugin just
|
|
22
|
+
- Footnotes: Note that footnotes support is very basic. Table cells are rendered in isolation, which breaks markdown-it-footnote's footnote numbering, so the plugin just displays the exact footnote number that's defined in the footnote link (e.g. `[^1]`).
|
|
23
23
|
- Images (markdown and html image embeds).
|
|
24
|
-
- Katex (math)
|
|
24
|
+
- Katex (math) - will be rendered, but not syntax highlighted when editing.
|
|
25
25
|
- Line breaks (as html `<br>` tags).
|
|
26
26
|
|
|
27
|
-
> [!note]
|
|
28
|
-
>
|
|
29
|
-
> The plugin does not provide handling for ctrl + clicking links while editing a table cell. However, you can left click links on table cells that aren't actively being edited, and you can get right click context menu options for links using plugins like Rich Markdown or Context Utils.
|
|
30
|
-
|
|
31
27
|
### Table Editing
|
|
32
28
|
|
|
33
29
|
Provides table editing from the rendered HTML table similar to the Rich text editor. The following operations are supported:
|
|
@@ -40,6 +36,10 @@ Provides table editing from the rendered HTML table similar to the Rich text edi
|
|
|
40
36
|
- Changing column alignment (left/center/right)
|
|
41
37
|
- Format table (currently just normalizes whitespace to one space around cell content, no full-on pretty formatting currently).
|
|
42
38
|
|
|
39
|
+
> [!note]
|
|
40
|
+
>
|
|
41
|
+
> The plugin does not provide handling for ctrl + clicking links while editing a table cell. However, you can left click links on table cells that aren't actively being edited, and you can get right click context menu options for links using plugins like Rich Markdown or Context Utils.
|
|
42
|
+
|
|
43
43
|
### Keyboard Shortcuts
|
|
44
44
|
|
|
45
45
|
| Action | Shortcut |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-rich-tables",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
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.4.
|
|
5
|
+
"version": "1.4.3",
|
|
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:a5cbd648fefaaef50e0d6c17bc09ee773514d6a744085b622a30e2b8422ae115",
|
|
47
|
+
"_publish_commit": "main:037c133e71a39540b2bf604bfd084c489617f351"
|
|
48
48
|
}
|