@adobe/helix-docx2md 1.0.16 → 1.0.19
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
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [1.0.19](https://github.com/adobe/helix-docx2md/compare/v1.0.18...v1.0.19) (2022-07-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency @adobe/helix-mediahandler to v1.0.34 ([#89](https://github.com/adobe/helix-docx2md/issues/89)) ([a3e442a](https://github.com/adobe/helix-docx2md/commit/a3e442a0b2fa6a5e8bf018c02c8aa308f8922c6e))
|
|
7
|
+
|
|
8
|
+
## [1.0.18](https://github.com/adobe/helix-docx2md/compare/v1.0.17...v1.0.18) (2022-06-16)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update dependency @adobe/helix-mediahandler to v1.0.29 ([#82](https://github.com/adobe/helix-docx2md/issues/82)) ([ce84846](https://github.com/adobe/helix-docx2md/commit/ce84846871da9a60bad0914963913b0bf8c0be81))
|
|
14
|
+
|
|
15
|
+
## [1.0.17](https://github.com/adobe/helix-docx2md/compare/v1.0.16...v1.0.17) (2022-05-30)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* keep softbreaks in headings ([#77](https://github.com/adobe/helix-docx2md/issues/77)) ([55695a4](https://github.com/adobe/helix-docx2md/commit/55695a4bfa93b35f81b41a4ecbd3f0244096f051))
|
|
21
|
+
|
|
1
22
|
## [1.0.16](https://github.com/adobe/helix-docx2md/compare/v1.0.15...v1.0.16) (2022-05-17)
|
|
2
23
|
|
|
3
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-docx2md",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.19",
|
|
4
4
|
"description": "Helix library that converts word documents to markdown",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"homepage": "https://github.com/adobe/helix-docx2md#readme",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@adobe/helix-markdown-support": "3.1.
|
|
37
|
+
"@adobe/helix-markdown-support": "3.1.6",
|
|
38
38
|
"@adobe/helix-shared-process-queue": "1.1.5",
|
|
39
39
|
"@adobe/mammoth": "1.4.15-bleeding.1",
|
|
40
40
|
"dirname-filename-esm": "1.1.1",
|
|
@@ -50,21 +50,21 @@
|
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@adobe/eslint-config-helix": "1.3.2",
|
|
53
|
-
"@adobe/helix-mediahandler": "1.0.
|
|
53
|
+
"@adobe/helix-mediahandler": "1.0.34",
|
|
54
54
|
"@semantic-release/changelog": "6.0.1",
|
|
55
55
|
"@semantic-release/exec": "6.0.3",
|
|
56
56
|
"@semantic-release/git": "10.0.1",
|
|
57
|
-
"c8": "7.11.
|
|
57
|
+
"c8": "7.11.3",
|
|
58
58
|
"dotenv": "16.0.1",
|
|
59
|
-
"eslint": "8.
|
|
59
|
+
"eslint": "8.19.0",
|
|
60
60
|
"eslint-plugin-header": "3.1.1",
|
|
61
61
|
"eslint-plugin-import": "2.26.0",
|
|
62
62
|
"husky": "8.0.1",
|
|
63
63
|
"junit-report-builder": "3.0.0",
|
|
64
|
-
"lint-staged": "
|
|
64
|
+
"lint-staged": "13.0.3",
|
|
65
65
|
"mocha": "10.0.0",
|
|
66
66
|
"mocha-multi-reporters": "1.5.1",
|
|
67
|
-
"semantic-release": "19.0.
|
|
67
|
+
"semantic-release": "19.0.3",
|
|
68
68
|
"unist-util-inspect": "7.0.0"
|
|
69
69
|
},
|
|
70
70
|
"lint-staged": {
|
|
@@ -167,7 +167,7 @@ export default function paragraph(h, node, parent, siblings) {
|
|
|
167
167
|
return h('thematicBreak');
|
|
168
168
|
}
|
|
169
169
|
// sanitize children
|
|
170
|
-
return h('heading', { depth }, nodes
|
|
170
|
+
return h('heading', { depth }, nodes);
|
|
171
171
|
}
|
|
172
172
|
|
|
173
173
|
// check for codeblock
|
|
@@ -22,7 +22,7 @@ import find from 'unist-util-find';
|
|
|
22
22
|
* │ └─0 text "All 50+ Adobe apps explained in 10 minutes"
|
|
23
23
|
* └─9 paragraph[1]
|
|
24
24
|
* └─0 image
|
|
25
|
-
* url: "https://ref--repo--owner.
|
|
25
|
+
* url: "https://ref--repo--owner.hlx.page/media_22205a4de0c419213733ecab0b0bd555257e9e5c#image.jpeg"
|
|
26
26
|
* alt: "Video titled: All 50+ Adobe apps explained in 10 minutes"
|
|
27
27
|
*
|
|
28
28
|
* alternative / new format
|