index.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*
  2. * md ast - pluggable markdown parser
  3. */
  4. const syntax = {
  5. bold: {
  6. paired: true,
  7. recursive: true,
  8. startRegexp: /\*\*\S.*/,
  9. endRegexp: /\S\*\*\s/,
  10. content: {
  11. start: {
  12. point: 'start',
  13. offset: 2
  14. },
  15. end: {
  16. point: 'end',
  17. offset: 1
  18. }
  19. },
  20. begin: 0,
  21. forward: {
  22. point: 'endEnd', //start, startEnd, end, endEnd
  23. offset: -1
  24. }
  25. },
  26. bold2: {
  27. paired: true,
  28. recursive: true,
  29. startRegexp: /\s__\S.*/,
  30. endRegexp: /\S__\s/,
  31. content: {
  32. start: {
  33. point: 'start',
  34. offset: 3
  35. },
  36. end: {
  37. point: 'end',
  38. offset: 1
  39. }
  40. },
  41. begin: 1,
  42. forward: {
  43. point: 'endEnd', //start, startEnd, end, endEnd
  44. offset: -1
  45. }
  46. },
  47. italic: {
  48. paired: true,
  49. recursive: true,
  50. startRegexp: /\*\S.*/,
  51. endRegexp: /\S\*\s/,
  52. content: {
  53. start: {
  54. point: 'start',
  55. offset: 2
  56. },
  57. end: {
  58. point: 'end',
  59. offset: 1
  60. }
  61. },
  62. begin: 0,
  63. forward: {
  64. point: 'endEnd', //start, startEnd, end, endEnd
  65. offset: -1
  66. }
  67. },
  68. italic2: {
  69. paired: true,
  70. recursive: true,
  71. startRegexp: /\s_\S.*/,
  72. endRegexp: /\S_\s/,
  73. content: {
  74. start: {
  75. point: 'start',
  76. offset: 2
  77. },
  78. end: {
  79. point: 'end',
  80. offset: 1
  81. }
  82. },
  83. begin: 1,
  84. forward: {
  85. point: 'endEnd', //start, startEnd, end, endEnd
  86. offset: -1
  87. }
  88. },
  89. root: {
  90. paired: true,
  91. recursive: true,
  92. startRegexp: /^/,
  93. endRegexp: /$/,
  94. content: {
  95. start: {
  96. point: 'start',
  97. offset: 1
  98. },
  99. end: {
  100. point: 'end',
  101. offset: 0
  102. }
  103. },
  104. begin: 0,
  105. forward: {
  106. point: 'endEnd', //start, startEnd, end, endEnd
  107. offset: -1
  108. }
  109. },
  110. }
  111. function findNearest(md, mdTags, offset=0){
  112. let nearest, nearestMatch = {index: Infinity};
  113. for (let [mdTag, {paired,
  114. startRegexp,
  115. rexexp}] of Object.entries(mdTags)) {
  116. if (mdTag === 'root') continue;
  117. let match = md.offsetMatch(offset, startRegexp || regexp)
  118. if (match && match.index < nearestMatch.index){
  119. nearestMatch = match
  120. nearest = mdTag
  121. }
  122. }
  123. return [nearest, nearestMatch]
  124. }
  125. function cutNode(md, match, tagName, {paired, recursive, startRegexp, endRegexp, content: {start, end}, begin, forward}){
  126. //if (paired){
  127. //md.match()
  128. //}
  129. }
  130. //node:
  131. //{
  132. // tag: 'keyFromSyntax',
  133. // children: [String, Node]
  134. // parent: node
  135. //}
  136. //
  137. String.prototype.offsetMatch = function(offset, ...params){
  138. return this.slice(offset).match(...params)
  139. }
  140. Array.prototype.last = function(){
  141. return this[this.length -1]
  142. }
  143. function buildAST(md, mdTags=syntax, offset=0, tree={tag: 'root'}, stack=[]){
  144. const currentNode = stack.last() || tree
  145. currentNode.children = currentNode.children || []
  146. const { children } = currentNode
  147. const { endRegexp, content: {end: {offset: offsetEnd} }, forward } = mdTags[currentNode.tag]
  148. while(offset < md.length){
  149. const [nearest, nearestMatch] = findNearest(md, mdTags, offset)
  150. const endMatch = md.offsetMatch(offset, endRegexp)
  151. if (endMatch) {
  152. if (!nearest || endMatch.index < nearestMatch.index){
  153. currentNode.endContent = offset + endMatch.index + offsetEnd
  154. children.push(md.slice(offset, currentNode.endContent))
  155. offset += endMatch.index + endMatch[0].length + forward.offset
  156. currentNode.endOffset = offset
  157. console.log('endmatch current', currentNode)
  158. return currentNode
  159. }
  160. }
  161. if (nearest){
  162. const {begin,content: {start}} = mdTags[nearest]
  163. if (nearestMatch.index){
  164. children.push(md.slice(offset, offset + nearestMatch.index + begin))
  165. offset += nearestMatch.index
  166. console.log(offset, md.slice(offset))
  167. }
  168. else {
  169. const newNode = {tag: nearest, startOffset: offset, parent: currentNode}
  170. children.push(newNode)
  171. buildAST(md, mdTags, offset + start.offset, tree, [...stack, newNode])
  172. console.log('same', newNode)
  173. offset = newNode.endOffset
  174. console.log(offset, md.slice(offset))
  175. }
  176. }
  177. else {
  178. children.push(md)
  179. md = ''
  180. }
  181. }
  182. return currentNode
  183. }
  184. console.log(buildAST("I just **love _bold text_ adddd** hahaha").children[1])