@readme/markdown 10.2.8 → 10.2.9

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
@@ -69559,7 +69559,7 @@ const visitor = (table, index, parent) => {
69559
69559
  visit(cell, 'break', (_, breakIndex, breakParent) => {
69560
69560
  breakParent.children.splice(breakIndex, 1, { type: 'text', value: '\n' });
69561
69561
  });
69562
- if (!phrasing(content) && content.type !== 'escape') {
69562
+ if (!(phrasing(content) || content.type === 'plain') && content.type !== 'escape') {
69563
69563
  hasFlowContent = true;
69564
69564
  return EXIT;
69565
69565
  }
package/dist/main.node.js CHANGED
@@ -87642,7 +87642,7 @@ const visitor = (table, index, parent) => {
87642
87642
  visit(cell, 'break', (_, breakIndex, breakParent) => {
87643
87643
  breakParent.children.splice(breakIndex, 1, { type: 'text', value: '\n' });
87644
87644
  });
87645
- if (!phrasing(content) && content.type !== 'escape') {
87645
+ if (!(phrasing(content) || content.type === 'plain') && content.type !== 'escape') {
87646
87646
  hasFlowContent = true;
87647
87647
  return EXIT;
87648
87648
  }