@adobe/helix-docx2md 1.3.2 → 1.3.3

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,10 @@
1
+ ## [1.3.3](https://github.com/adobe/helix-docx2md/compare/v1.3.2...v1.3.3) (2022-11-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * use adobe gridtables ([#147](https://github.com/adobe/helix-docx2md/issues/147)) ([f7b5542](https://github.com/adobe/helix-docx2md/commit/f7b5542f16b01316f54b8d28734bf7b9a6188cf1)), closes [#146](https://github.com/adobe/helix-docx2md/issues/146)
7
+
1
8
  ## [1.3.2](https://github.com/adobe/helix-docx2md/compare/v1.3.1...v1.3.2) (2022-10-31)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-docx2md",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "Helix library that converts word documents to markdown",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
@@ -36,6 +36,8 @@
36
36
  "@adobe/helix-markdown-support": "5.0.10",
37
37
  "@adobe/helix-shared-process-queue": "1.1.5",
38
38
  "@adobe/mammoth": "1.5.1-bleeding.1",
39
+ "@adobe/mdast-util-gridtables": "1.0.0",
40
+ "@adobe/remark-gridtables": "1.0.0",
39
41
  "dirname-filename-esm": "1.1.1",
40
42
  "github-slugger": "2.0.0",
41
43
  "mdast-util-to-markdown": "1.3.0",
@@ -9,7 +9,7 @@
9
9
  * OF ANY KIND, either express or implied. See the License for the specific language
10
10
  * governing permissions and limitations under the License.
11
11
  */
12
- import { TYPE_CELL } from '@adobe/helix-markdown-support/gridtable';
12
+ import { TYPE_CELL } from '@adobe/mdast-util-gridtables';
13
13
  import all from '../all.js';
14
14
 
15
15
  const V_ALIGN = {
@@ -9,7 +9,7 @@
9
9
  * OF ANY KIND, either express or implied. See the License for the specific language
10
10
  * governing permissions and limitations under the License.
11
11
  */
12
- import { TYPE_ROW } from '@adobe/helix-markdown-support/gridtable';
12
+ import { TYPE_ROW } from '@adobe/mdast-util-gridtables';
13
13
  import all from '../all.js';
14
14
 
15
15
  function gridTableRow(h, node) {
@@ -9,7 +9,7 @@
9
9
  * OF ANY KIND, either express or implied. See the License for the specific language
10
10
  * governing permissions and limitations under the License.
11
11
  */
12
- import { TYPE_TABLE, TYPE_HEADER, TYPE_BODY } from '@adobe/helix-markdown-support/gridtable';
12
+ import { TYPE_TABLE, TYPE_HEADER, TYPE_BODY } from '@adobe/mdast-util-gridtables';
13
13
  import all from '../all.js';
14
14
 
15
15
  function gridTable(h, node) {
@@ -29,7 +29,7 @@ import {
29
29
  imageReferences,
30
30
  } from '@adobe/helix-markdown-support';
31
31
  import { remarkMatter } from '@adobe/helix-markdown-support/matter';
32
- import { remarkGridTable } from '@adobe/helix-markdown-support/gridtable';
32
+ import remarkGridTable from '@adobe/remark-gridtables';
33
33
 
34
34
  import processImages from './mdast-process-images.js';
35
35
  import sanitizeAutoEmbeds from './mdast-sanitize-autoembeds.js';