@readme/markdown 9.3.1 → 9.3.2

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/dist/main.js CHANGED
@@ -58812,6 +58812,8 @@ const isLiteral = (node) => 'value' in node;
58812
58812
  const visitor = (table, index, parent) => {
58813
58813
  let hasFlowContent = false;
58814
58814
  const tableCellVisitor = (cell) => {
58815
+ if (cell.children.length === 0)
58816
+ return EXIT;
58815
58817
  const content = cell.children.length === 1 && cell.children[0].type === 'paragraph'
58816
58818
  ? cell.children[0].children[0]
58817
58819
  : cell.children[0];
package/dist/main.node.js CHANGED
@@ -75721,6 +75721,8 @@ const isLiteral = (node) => 'value' in node;
75721
75721
  const visitor = (table, index, parent) => {
75722
75722
  let hasFlowContent = false;
75723
75723
  const tableCellVisitor = (cell) => {
75724
+ if (cell.children.length === 0)
75725
+ return EXIT;
75724
75726
  const content = cell.children.length === 1 && cell.children[0].type === 'paragraph'
75725
75727
  ? cell.children[0].children[0]
75726
75728
  : cell.children[0];