joplin-plugin-copy-as-html 1.6.1 → 1.6.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
@@ -89,7 +89,7 @@ SVG images may have compatibility issues with certain editors/email clients, so
89
89
 
90
90
  "Copy selection as Plain Text" is provided as a right click context menu option and as a keyboard shortcut (ctrl + alt + c by default).
91
91
 
92
- This command parses the selected Markdown and renders it as paste-friendly plain text. By default it removes all markdown formatting markers and image embeds, while preserving document structure such as paragraphs, list leaders, nested list indentation, tables (optimized for plain text readability), footnotes, and link text.
92
+ This command parses the selected Markdown and renders it as normalized paste-friendly plain text. By default it removes all markdown formatting markers and image embeds, while preserving document structure such as paragraphs, list leaders, nested list indentation, tables (optimized for plain text readability), footnotes, and link text. However, the plain text output can be customized to retain specific markdown formatting (see below).
93
93
 
94
94
  ### Customizing plain text output
95
95
 
@@ -113,6 +113,8 @@ The following options are provided to preserve specific markdown formatting mark
113
113
 
114
114
  - Preserve insert markers
115
115
 
116
+ - Preserve code backticks
117
+
116
118
  - Preserve table pipes
117
119
 
118
120
  The following options are provided for external hyperlinks (only affects markdown links with `http`/`https` URLs):
@@ -136,7 +138,3 @@ The following options are provided for list spacing:
136
138
  ### Markdown emoji
137
139
 
138
140
  Copy as Plain Text supports markdown emoji shortcodes, so emoji such as :white_check_mark: can be rendered as Unicode in the plain text output. This can be disabled via the Display emojis setting.
139
-
140
- ## Known Issues
141
-
142
- - The plugin's keyboard shortcuts sometimes don't work on cold start of Joplin, can be fixed by toggling editors or going to Tools | Options | Keyboard Shortcuts and back.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-copy-as-html",
3
- "version": "1.6.1",
3
+ "version": "1.6.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.copyashtml",
4
4
  "app_min_version": "3.3",
5
- "version": "1.6.1",
5
+ "version": "1.6.2",
6
6
  "name": "Copy as HTML",
7
7
  "description": "Allows you to copy text with HTML (rich text) formatting from the markdown editor (including images). Also allows you to copy as plain text (without markdown formatting)",
8
8
  "author": "bwat47",
@@ -127,6 +127,12 @@
127
127
  "description": "If enabled, insert markers will be preserved in plain text output.",
128
128
  "value": false
129
129
  },
130
+ "preserveCodeBackticks": {
131
+ "type": "bool",
132
+ "label": "Preserve code backticks",
133
+ "description": "If enabled, inline code and code block backticks will be preserved in plain text output.",
134
+ "value": false
135
+ },
130
136
  "hyperlinkBehavior": {
131
137
  "type": "enum",
132
138
  "label": "Plain text hyperlink behavior",
@@ -171,6 +177,6 @@
171
177
  "value": false
172
178
  }
173
179
  },
174
- "_publish_hash": "sha256:f8267b33a9e3af3e7b47023cc201216cfab66604203a5bfc7caae2d3eb205604",
175
- "_publish_commit": "main:f4876f422e81637030e7360575028b9b62292c63"
180
+ "_publish_hash": "sha256:7b143e04835b80ebe81d2ec320ca4c16106fd4ee0feccf2305a0fc0052d8f78e",
181
+ "_publish_commit": "main:08f3e9c8def1759980fd4f346e084870752cc54a"
176
182
  }