Explorar el Código

ol/ul/li investigations and comments

Ivan Asmer hace 2 años
padre
commit
6a74cf3dc0
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  1. 0 1
      index.mjs

+ 0 - 1
index.mjs

@@ -591,7 +591,6 @@ function buildAST(md, mdTags=syntax, offset=0, tree={tag: 'root'}, stack=[]){
 
             const newNode = {tag: childName, startOffset: offset, parent: currentNode, startMatch: currentNode.startMatch}
             children.push(newNode) //create LI and add it into children of ol/ul
-            //
 
             newNode.children = buildAST(listMD, mdTags).children
             newNode.children.forEach(item => ((typeof item === 'object') &&  (item.parent = currentNode)))