confluence-cli 2.1.7 → 2.1.8

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.
@@ -126,6 +126,8 @@ class StorageWalker {
126
126
  return '**' + this.walkNodes(node.children) + '**';
127
127
  case 'em': case 'i':
128
128
  return '*' + this.walkNodes(node.children) + '*';
129
+ case 's': case 'del':
130
+ return '~~' + this.walkNodes(node.children) + '~~';
129
131
  case 'code':
130
132
  return '`' + this.walkNodes(node.children) + '`';
131
133
  case 'br':
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "confluence-cli",
3
- "version": "2.1.7",
3
+ "version": "2.1.8",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "confluence-cli",
9
- "version": "2.1.7",
9
+ "version": "2.1.8",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "axios": "^1.15.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "confluence-cli",
3
- "version": "2.1.7",
3
+ "version": "2.1.8",
4
4
  "description": "A command-line interface for Atlassian Confluence with page creation and editing capabilities",
5
5
  "main": "index.js",
6
6
  "bin": {