@adobe/helix-importer 3.4.68 → 3.4.70
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 +2 -2
- package/src/importer/HTML2x.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [3.4.70](https://github.com/adobe/helix-importer/compare/v3.4.69...v3.4.70) (2025-03-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **sites-29937:** send customHeaders into md2docx ([#506](https://github.com/adobe/helix-importer/issues/506)) ([05fe738](https://github.com/adobe/helix-importer/commit/05fe7384d90cf48833db1390745bd0bfd9ad5b92))
|
|
7
|
+
|
|
8
|
+
## [3.4.69](https://github.com/adobe/helix-importer/compare/v3.4.68...v3.4.69) (2025-03-11)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update dependency @adobe/helix-md2docx to v2.2.4 ([#505](https://github.com/adobe/helix-importer/issues/505)) ([1080d37](https://github.com/adobe/helix-importer/commit/1080d377fe855ff7e3bb7d155191e70c4c4c8f9c))
|
|
14
|
+
|
|
1
15
|
## [3.4.68](https://github.com/adobe/helix-importer/compare/v3.4.67...v3.4.68) (2025-03-10)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-importer",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.70",
|
|
4
4
|
"description": "Helix Importer tool: create md / docx from html",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"license": "Apache-2.0",
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@adobe/helix-markdown-support": "7.1.12",
|
|
56
|
-
"@adobe/helix-md2docx": "2.2.
|
|
56
|
+
"@adobe/helix-md2docx": "2.2.4",
|
|
57
57
|
"@adobe/helix-md2jcr": "1.1.6",
|
|
58
58
|
"@adobe/mdast-util-gridtables": "4.0.11",
|
|
59
59
|
"@adobe/remark-gridtables": "3.0.11",
|
package/src/importer/HTML2x.js
CHANGED
|
@@ -161,6 +161,7 @@ async function html2x(
|
|
|
161
161
|
mdast2docxOptions: {
|
|
162
162
|
stylesXML: config.docxStylesXML,
|
|
163
163
|
image2png: config.image2png,
|
|
164
|
+
customHeaders: params.customHeaders || {},
|
|
164
165
|
},
|
|
165
166
|
createDocumentFromString: config.createDocumentFromString,
|
|
166
167
|
components: params.components,
|