Преглед на файлове

ol/ul/li investigations and comments

Ivan Asmer преди 2 години
родител
ревизия
6a74cf3dc0
променени са 1 файла, в които са добавени 0 реда и са изтрити 1 реда
  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)))