@readme/markdown 13.7.1 → 13.7.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.
@@ -0,0 +1,11 @@
1
+ import type { Transform } from 'mdast-util-from-markdown';
2
+ /**
3
+ * Mdxish-specific version of `tablesToJsx`. Differs from the shared MDX version:
4
+ *
5
+ * - Excludes `html` nodes from triggering JSX conversion because raw HTML
6
+ * inside JSX `<Table>` breaks remarkMdx parsing on the deserialization roundtrip.
7
+ * - Skips empty cells instead of aborting the entire visit so that flow content
8
+ * in later cells is still detected.
9
+ */
10
+ declare const mdxishTablesToJsx: () => Transform;
11
+ export default mdxishTablesToJsx;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@readme/markdown",
3
3
  "description": "ReadMe's React-based Markdown parser",
4
4
  "author": "Rafe Goldberg <rafe@readme.io>",
5
- "version": "13.7.1",
5
+ "version": "13.7.3",
6
6
  "main": "dist/main.node.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "browser": "dist/main.js",
@@ -169,7 +169,7 @@
169
169
  },
170
170
  {
171
171
  "path": "dist/main.node.js",
172
- "maxSize": "853KB"
172
+ "maxSize": "855KB"
173
173
  }
174
174
  ]
175
175
  },