Ivan Asmer hace 4 años
padre
commit
f9cfba16a2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      index.mjs

+ 1 - 1
index.mjs

@@ -700,7 +700,7 @@ function toReact(ast, React, mapMDToComponents=defaultMapMDToComponents){
     const childToReact = child => typeof child === 'string' ?  child  : 
                                                                toReact(child, React, mapMDToComponents)
     const props = {key: Math.random(),
-                               children: ast.children.map(childToReact)}
+                               children: ast.children && ast.children.map(childToReact)}
     if (typeof RenderComponent !== 'string' && RenderComponent !== React.Fragment)
         Object.assign(props,{node: ast, 
                                title: ast.title && ast.title.map(childToReact),