joplin-plugin-rich-tables 1.4.0 → 1.4.1

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,19 @@ 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
+ #### Supported markdown syntax for rendered tables
19
+
20
+ - Basic formatting: bold/italic/inline code/strikethrough/highlight(==mark==)/underline(++insert++).
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 uses the exact footnote number that's defined in the footnote link (e.g. `[^1]` and scrolls to the matching footnote definition if found).
23
+ - Images (markdown and html image embeds).
24
+ - Katex (math)
25
+ - Line breaks (as html `<br>` tags).
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
+
18
31
  ### Table Editing
19
32
 
20
33
  Provides table editing from the rendered HTML table similar to the Rich text editor. The following operations are supported:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-rich-tables",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
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.0",
5
+ "version": "1.4.1",
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:821d2b6a0530e29b5a646348a6af6c888a2dc276ea17c4f25173f31ed984442d",
47
- "_publish_commit": "main:cd1184e85bbea4dd5bd71cefa63df8aa8587c870"
46
+ "_publish_hash": "sha256:29dc8f71383a3e75fb56c6abc7732bc1200b942bd1f5274f34050e2352a463e0",
47
+ "_publish_commit": "main:5e894596010accc72e1fd21cfdc03255c998a972"
48
48
  }