joplin-plugin-copy-as-html 1.0.16 → 1.0.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-copy-as-html",
3
- "version": "1.0.16",
3
+ "version": "1.0.18",
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",
@@ -30,6 +30,8 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "@joplin/renderer": "^3.3.1",
33
- "jsdom": "^26.1.0"
33
+ "jsdom": "^26.1.0",
34
+ "markdown-it-ins": "^4.0.0",
35
+ "markdown-it-mark": "^4.0.0"
34
36
  }
35
37
  }
Binary file
@@ -2,7 +2,7 @@
2
2
  "manifest_version": 1,
3
3
  "id": "com.bwat47.copyashtml",
4
4
  "app_min_version": "3.3",
5
- "version": "1.0.16",
5
+ "version": "1.0.18",
6
6
  "name": "Copy as HTML",
7
7
  "description": "Allows you to copy text with HTML (rich text) formatting from the markdown editor without excess styling.",
8
8
  "author": "bwat47",
@@ -50,6 +50,18 @@
50
50
  "description": "If enabled, ## TEST will remain as-is in plain text output.",
51
51
  "value": false
52
52
  },
53
+ "preserveMark": {
54
+ "type": "bool",
55
+ "label": "Preserve ==mark== in plain text",
56
+ "description": "If enabled, ==mark== will remain as-is in plain text output.",
57
+ "value": false
58
+ },
59
+ "preserveInsert": {
60
+ "type": "bool",
61
+ "label": "Preserve ++insert++ in plain text",
62
+ "description": "If enabled, ++insert++ will remain as-is in plain text output.",
63
+ "value": false
64
+ },
53
65
  "hyperlinkBehavior": {
54
66
  "type": "enum",
55
67
  "label": "Plain Text hyperlink behavior",
@@ -62,6 +74,6 @@
62
74
  "value": "title"
63
75
  }
64
76
  },
65
- "_publish_hash": "sha256:2275a29a50f48d9e4d5ad4093478d9903509d201883de7a82bcb719c7c99ae85",
66
- "_publish_commit": "main:5c2fa08c0392f83cdbe440d919b8f622af4aee1c"
77
+ "_publish_hash": "sha256:b3ed8d62b4080369710fa40facdcfaa6845fa133fdfe52d32d141074adbd65ee",
78
+ "_publish_commit": "main:cc95a6678622ef091f1c46cd3dd309e08c663cf0"
67
79
  }