@adobe/helix-docx2md 1.4.11 → 1.4.13
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/CHANGELOG.md +14 -0
- package/package.json +5 -5
- package/src/dast2mdast/handlers/paragraph.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.4.13](https://github.com/adobe/helix-docx2md/compare/v1.4.12...v1.4.13) (2023-08-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* type error in inline code ([#274](https://github.com/adobe/helix-docx2md/issues/274)) ([ddb3960](https://github.com/adobe/helix-docx2md/commit/ddb3960c73300e4c4c00462edf8c111fb053a505))
|
|
7
|
+
|
|
8
|
+
## [1.4.12](https://github.com/adobe/helix-docx2md/compare/v1.4.11...v1.4.12) (2023-07-28)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update dependency @adobe/helix-markdown-support to v6.3.0 ([d2902ff](https://github.com/adobe/helix-docx2md/commit/d2902ffc35678927552e80ede9666df2636995cf)), closes [#268](https://github.com/adobe/helix-docx2md/issues/268)
|
|
14
|
+
|
|
1
15
|
## [1.4.11](https://github.com/adobe/helix-docx2md/compare/v1.4.10...v1.4.11) (2023-07-22)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-docx2md",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.13",
|
|
4
4
|
"description": "Helix library that converts word documents to markdown",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"homepage": "https://github.com/adobe/helix-docx2md#readme",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@adobe/helix-markdown-support": "6.
|
|
36
|
+
"@adobe/helix-markdown-support": "6.3.0",
|
|
37
37
|
"@adobe/helix-shared-process-queue": "3.0.0",
|
|
38
38
|
"@adobe/mammoth": "1.5.1-bleeding.2",
|
|
39
39
|
"@adobe/mdast-util-gridtables": "2.0.2",
|
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@adobe/eslint-config-helix": "2.0.2",
|
|
55
|
-
"@adobe/helix-mediahandler": "2.2.
|
|
55
|
+
"@adobe/helix-mediahandler": "2.2.7",
|
|
56
56
|
"@semantic-release/changelog": "6.0.3",
|
|
57
57
|
"@semantic-release/exec": "6.0.3",
|
|
58
58
|
"@semantic-release/git": "10.0.1",
|
|
59
|
-
"c8": "8.0.
|
|
59
|
+
"c8": "8.0.1",
|
|
60
60
|
"dotenv": "16.3.1",
|
|
61
|
-
"eslint": "8.
|
|
61
|
+
"eslint": "8.46.0",
|
|
62
62
|
"husky": "8.0.3",
|
|
63
63
|
"junit-report-builder": "3.0.1",
|
|
64
64
|
"lint-staged": "13.2.3",
|
|
@@ -111,7 +111,7 @@ function collapseInlineCode(ret, prev) {
|
|
|
111
111
|
if (next > 0) {
|
|
112
112
|
// move first chunk to new paragraph
|
|
113
113
|
const kids = children.splice(0, next);
|
|
114
|
-
while (kids[kids.length - 1]
|
|
114
|
+
while (kids[kids.length - 1]?.type === 'break') {
|
|
115
115
|
kids.pop();
|
|
116
116
|
}
|
|
117
117
|
ret.splice(p, 0, {
|