소스 검색

+strike, indentEndRegexp fixes

Ivan Asmer 4 년 전
부모
커밋
18d1864644
1개의 변경된 파일24개의 추가작업 그리고 1개의 파일을 삭제
  1. 24 1
      index.js

+ 24 - 1
index.js

@@ -4,6 +4,27 @@
 
 
 const syntax = {
+    strike: {
+        paired: true,
+        recursive: true,
+        startRegexp: /\~\~\S.*/,
+        endRegexp:   /\~\~\W/,
+        content: {
+            start: {
+                point: 'start',
+                offset: 2
+            },
+            end: {
+                point: 'start',
+                offset: 0
+            }
+        },
+        begin: 0,
+        forward: {
+            point: 'endEnd', //start, startEnd, end, endEnd
+            offset: -1
+        }
+    },
     bold: {
         paired: true,
         recursive: true,
@@ -396,7 +417,7 @@ const syntax = {
 }
 
 const indentRegexp = (regexp,count) => new RegExp(`\\n(\\s${count === undefined ? '*' : `{${count}}` })` + regexp.toString().slice(1,-1))
-const indentEndRegexp = (count) => new RegExp(`\\n(\\s${count === undefined ? '*' : `{${count}}` })\\S`)
+const indentEndRegexp = (count) => new RegExp(`\\n(\\s${count === undefined ? '*' : `{0,${count}}` })\\S`)
 
 function findNearest(md, mdTags, offset=0){
     let nearest, nearestMatch = {index: Infinity};
@@ -462,6 +483,7 @@ function buildAST(md, mdTags=syntax, offset=0, tree={tag: 'root'}, stack=[]){
             let endMatch = md.offsetMatch(offset, endRegexp) || {index: md.length +1, 0: 'zzz'}
 
             let listMD   = md.slice(offset, endMatch.index + offset).cutIndent(currentNode.startMatch[0].length -1)
+            debugger;
 
             const newNode = {tag: childName, startOffset: offset, parent: currentNode, startMatch: currentNode.startMatch}
             children.push(newNode)
@@ -537,6 +559,7 @@ const defaultMapMDToComponents = {
     heading4: Heading,
     heading5: Heading,
     heading6: Heading,
+    strike: "strike",
     bold1: "strong",
     bold2: "strong",
     italic1: "i",