index.js 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. /*
  2. * md ast - pluggable markdown parser
  3. */
  4. const syntax = {
  5. bold: {
  6. paired: true,
  7. recursive: true,
  8. startRegexp: /\*\*\S.*/,
  9. endRegexp: /\*\*\W/,
  10. content: {
  11. start: {
  12. point: 'start',
  13. offset: 2
  14. },
  15. end: {
  16. point: 'start',
  17. offset: 0
  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: /__\W/,
  31. content: {
  32. start: {
  33. point: 'start',
  34. offset: 3
  35. },
  36. end: {
  37. point: 'start',
  38. offset: 0
  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\*[^*]/,
  52. content: {
  53. start: {
  54. point: 'start',
  55. offset: 1
  56. },
  57. end: {
  58. point: 'start',
  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_\W/,
  73. content: {
  74. start: {
  75. point: 'start',
  76. offset: 2
  77. },
  78. end: {
  79. point: 'start',
  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. heading1: {
  111. paired: true,
  112. recursive: true,
  113. startRegexp: /\n#[ \t]*(.*)\n/,
  114. endRegexp: /\n#/,
  115. content: {
  116. start: {
  117. point: 'end',
  118. offset: 0
  119. },
  120. end: {
  121. point: 'start',
  122. offset: 0
  123. }
  124. },
  125. begin: 1,
  126. forward: {
  127. point: 'end', //start, startEnd, end, endEnd
  128. offset: 0
  129. },
  130. title: {
  131. index: 1,
  132. recursive: true,
  133. },
  134. onbuild(md, mdTags, buildAST){ //this = {tag: }
  135. }
  136. },
  137. code: {
  138. paired: true,
  139. recursive: false,
  140. startRegexp: /`/,
  141. endRegexp: /`/,
  142. content: {
  143. start: {
  144. point: 'start',
  145. offset: 1
  146. },
  147. end: {
  148. point: 'start',
  149. offset: 0
  150. }
  151. },
  152. begin: 0,
  153. forward: {
  154. point: 'end', //start, startEnd, end, endEnd
  155. offset: 1
  156. }
  157. }
  158. }
  159. function findNearest(md, mdTags, offset=0){
  160. let nearest, nearestMatch = {index: Infinity};
  161. for (let [mdTag, {paired,
  162. startRegexp,
  163. rexexp}] of Object.entries(mdTags)) {
  164. if (mdTag === 'root') continue;
  165. let match = md.offsetMatch(offset, startRegexp || regexp)
  166. if (match && match.index < nearestMatch.index){
  167. nearestMatch = match
  168. nearest = mdTag
  169. }
  170. }
  171. return [nearest, nearestMatch]
  172. }
  173. //node:
  174. //{
  175. // tag: 'keyFromSyntax',
  176. // children: [String, Node]
  177. // parent: node
  178. //}
  179. //
  180. String.prototype.offsetMatch = function(offset, ...params){
  181. return this.slice(offset).match(...params)
  182. }
  183. Array.prototype.last = function(){
  184. return this[this.length -1]
  185. }
  186. function buildAST(md, mdTags=syntax, offset=0, tree={tag: 'root'}, stack=[]){
  187. const currentNode = stack.last() || tree
  188. if (currentNode.tag === 'root') md = '\n' + md + '\n'
  189. currentNode.children = currentNode.children || []
  190. const { children } = currentNode
  191. const {title, recursive, endRegexp, content: {end: {offset: offsetEnd, point} }, forward } = mdTags[currentNode.tag]
  192. if (title){
  193. const {index, recursive} = title
  194. const {[index]: titleContent } = currentNode.startMatch
  195. if (recursive){
  196. currentNode.title = buildAST(titleContent, mdTags).children
  197. }
  198. else {
  199. currentNode.title = [titleContent]
  200. }
  201. }
  202. while(offset < md.length){
  203. const [nearest, nearestMatch] = findNearest(md, mdTags, offset)
  204. let endMatch = md.offsetMatch(offset, endRegexp)
  205. if (!recursive || endMatch) {
  206. if (!recursive || !nearest || endMatch.index <= nearestMatch.index ){
  207. endMatch = endMatch || {index: md.length - offset, 0: "zzz"}
  208. currentNode.endContent = offset + endMatch.index + offsetEnd + (point === 'end' ? endMatch[0].length : 0)
  209. children.push(md.slice(offset, currentNode.endContent))
  210. offset += endMatch.index + forward.offset + (forward.point === 'endEnd' ? endMatch[0].length : 0)
  211. console.log(currentNode.tag, forward.point === 'endEnd' ? endMatch[0].length : 0)
  212. currentNode.endOffset = offset
  213. currentNode.endMatch = endMatch
  214. return currentNode
  215. }
  216. }
  217. if (nearest){
  218. const {begin,content: {start}} = mdTags[nearest]
  219. if (nearestMatch.index){
  220. children.push(md.slice(offset, offset + nearestMatch.index + begin))
  221. offset += nearestMatch.index
  222. }
  223. else {
  224. const newNode = {tag: nearest, startOffset: offset, parent: currentNode, startMatch: nearestMatch}
  225. children.push(newNode)
  226. buildAST(md, mdTags, offset + start.offset + (start.point === 'end' ? nearestMatch[0].length : 0), tree, [...stack, newNode])
  227. offset = newNode.endOffset
  228. }
  229. }
  230. else {
  231. children.push(md.slice(offset))
  232. offset = md.length
  233. }
  234. }
  235. return currentNode
  236. }
  237. //const md =
  238. //`
  239. //# heading1
  240. //какой-то _текст_
  241. //# heading2
  242. //а тут **шо** цикавого?)))
  243. //`;
  244. //console.log( buildAST(md).children)