Browse Source

ol/ul/li investigations and comments

Ivan Asmer 2 năm trước cách đây
mục cha
commit
6a74cf3dc0
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  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)))