aboutsummaryrefslogtreecommitdiff
path: root/src/blocks.c
blob: 5d11710a402357798b1a8260efa37a0b831474bd (plain)
  1. #include <stdlib.h>
  2. #include <assert.h>
  3. #include <stdio.h>
  4. #include <ctype.h>
  5. #include "config.h"
  6. #include "parser.h"
  7. #include "cmark.h"
  8. #include "node.h"
  9. #include "references.h"
  10. #include "utf8.h"
  11. #include "scanners.h"
  12. #include "inlines.h"
  13. #include "html/houdini.h"
  14. #include "buffer.h"
  15. #include "debug.h"
  16. #define CODE_INDENT 4
  17. #define peek_at(i, n) (i)->data[n]
  18. static void
  19. S_parser_feed(cmark_parser *parser, const unsigned char *buffer, size_t len,
  20. bool eof);
  21. static void
  22. S_process_line(cmark_parser *parser, const unsigned char *buffer,
  23. size_t bytes);
  24. static cmark_node* make_block(cmark_node_type tag, int start_line, int start_column)
  25. {
  26. cmark_node* e;
  27. e = (cmark_node *)calloc(1, sizeof(*e));
  28. if(e != NULL) {
  29. e->type = tag;
  30. e->open = true;
  31. e->start_line = start_line;
  32. e->start_column = start_column;
  33. e->end_line = start_line;
  34. strbuf_init(&e->string_content, 32);
  35. }
  36. return e;
  37. }
  38. // Create a root document cmark_node.
  39. static cmark_node* make_document()
  40. {
  41. cmark_node *e = make_block(NODE_DOCUMENT, 1, 1);
  42. return e;
  43. }
  44. cmark_parser *cmark_parser_new()
  45. {
  46. cmark_parser *parser = (cmark_parser*)malloc(sizeof(cmark_parser));
  47. cmark_node *document = make_document();
  48. strbuf *line = (strbuf*)malloc(sizeof(strbuf));
  49. strbuf *buf = (strbuf*)malloc(sizeof(strbuf));
  50. cmark_strbuf_init(line, 256);
  51. cmark_strbuf_init(buf, 0);
  52. parser->refmap = cmark_reference_map_new();
  53. parser->root = document;
  54. parser->current = document;
  55. parser->line_number = 0;
  56. parser->curline = line;
  57. parser->linebuf = buf;
  58. return parser;
  59. }
  60. void cmark_parser_free(cmark_parser *parser)
  61. {
  62. cmark_strbuf_free(parser->curline);
  63. free(parser->curline);
  64. cmark_strbuf_free(parser->linebuf);
  65. free(parser->linebuf);
  66. cmark_reference_map_free(parser->refmap);
  67. free(parser);
  68. }
  69. static void finalize(cmark_parser *parser, cmark_node* b, int line_number);
  70. // Returns true if line has only space characters, else false.
  71. static bool is_blank(strbuf *s, int offset)
  72. {
  73. while (offset < s->size) {
  74. switch (s->ptr[offset]) {
  75. case '\n':
  76. return true;
  77. case ' ':
  78. offset++;
  79. break;
  80. default:
  81. return false;
  82. }
  83. }
  84. return true;
  85. }
  86. static inline bool can_contain(cmark_node_type parent_type, cmark_node_type child_type)
  87. {
  88. return ( parent_type == NODE_DOCUMENT ||
  89. parent_type == NODE_BLOCK_QUOTE ||
  90. parent_type == NODE_LIST_ITEM ||
  91. (parent_type == NODE_LIST && child_type == NODE_LIST_ITEM) );
  92. }
  93. static inline bool accepts_lines(cmark_node_type block_type)
  94. {
  95. return (block_type == NODE_PARAGRAPH ||
  96. block_type == NODE_HEADER ||
  97. block_type == NODE_CODE_BLOCK);
  98. }
  99. static void add_line(cmark_node* cmark_node, chunk *ch, int offset)
  100. {
  101. assert(cmark_node->open);
  102. strbuf_put(&cmark_node->string_content, ch->data + offset, ch->len - offset);
  103. }
  104. static void remove_trailing_blank_lines(strbuf *ln)
  105. {
  106. int i;
  107. for (i = ln->size - 1; i >= 0; --i) {
  108. unsigned char c = ln->ptr[i];
  109. if (c != ' ' && c != '\t' && c != '\r' && c != '\n')
  110. break;
  111. }
  112. if (i < 0) {
  113. strbuf_clear(ln);
  114. return;
  115. }
  116. i = strbuf_strchr(ln, '\n', i);
  117. if (i >= 0)
  118. strbuf_truncate(ln, i);
  119. }
  120. // Check to see if a cmark_node ends with a blank line, descending
  121. // if needed into lists and sublists.
  122. static bool ends_with_blank_line(cmark_node* cmark_node)
  123. {
  124. if (cmark_node->last_line_blank) {
  125. return true;
  126. }
  127. if ((cmark_node->type == NODE_LIST || cmark_node->type == NODE_LIST_ITEM) && cmark_node->last_child) {
  128. return ends_with_blank_line(cmark_node->last_child);
  129. } else {
  130. return false;
  131. }
  132. }
  133. // Break out of all containing lists
  134. static int break_out_of_lists(cmark_parser *parser, cmark_node ** bptr, int line_number)
  135. {
  136. cmark_node *container = *bptr;
  137. cmark_node *b = parser->root;
  138. // find first containing NODE_LIST:
  139. while (b && b->type != NODE_LIST) {
  140. b = b->last_child;
  141. }
  142. if (b) {
  143. while (container && container != b) {
  144. finalize(parser, container, line_number);
  145. container = container->parent;
  146. }
  147. finalize(parser, b, line_number);
  148. *bptr = b->parent;
  149. }
  150. return 0;
  151. }
  152. static void finalize(cmark_parser *parser, cmark_node* b, int line_number)
  153. {
  154. int firstlinelen;
  155. int pos;
  156. cmark_node* item;
  157. cmark_node* subitem;
  158. if (!b->open)
  159. return; // don't do anything if the cmark_node is already closed
  160. b->open = false;
  161. if (line_number > b->start_line) {
  162. b->end_line = line_number - 1;
  163. } else {
  164. b->end_line = line_number;
  165. }
  166. switch (b->type) {
  167. case NODE_PARAGRAPH:
  168. while (strbuf_at(&b->string_content, 0) == '[' &&
  169. (pos = cmark_parse_reference_inline(&b->string_content, parser->refmap))) {
  170. strbuf_drop(&b->string_content, pos);
  171. }
  172. if (is_blank(&b->string_content, 0)) {
  173. b->type = NODE_REFERENCE_DEF;
  174. }
  175. break;
  176. case NODE_CODE_BLOCK:
  177. if (!b->as.code.fenced) { // indented code
  178. remove_trailing_blank_lines(&b->string_content);
  179. strbuf_putc(&b->string_content, '\n');
  180. break;
  181. } else {
  182. // first line of contents becomes info
  183. firstlinelen = strbuf_strchr(&b->string_content, '\n', 0);
  184. houdini_unescape_html_f(
  185. &b->as.code.info,
  186. b->string_content.ptr,
  187. firstlinelen
  188. );
  189. strbuf_drop(&b->string_content, firstlinelen + 1);
  190. strbuf_trim(&b->as.code.info);
  191. strbuf_unescape(&b->as.code.info);
  192. break;
  193. }
  194. case NODE_LIST: // determine tight/loose status
  195. b->as.list.tight = true; // tight by default
  196. item = b->first_child;
  197. while (item) {
  198. // check for non-final non-empty list item ending with blank line:
  199. if (item->last_line_blank && item->next) {
  200. b->as.list.tight = false;
  201. break;
  202. }
  203. // recurse into children of list item, to see if there are
  204. // spaces between them:
  205. subitem = item->first_child;
  206. while (subitem) {
  207. if (ends_with_blank_line(subitem) &&
  208. (item->next || subitem->next)) {
  209. b->as.list.tight = false;
  210. break;
  211. }
  212. subitem = subitem->next;
  213. }
  214. if (!(b->as.list.tight)) {
  215. break;
  216. }
  217. item = item->next;
  218. }
  219. break;
  220. default:
  221. break;
  222. }
  223. }
  224. // Add a cmark_node as child of another. Return pointer to child.
  225. static cmark_node* add_child(cmark_parser *parser, cmark_node* parent,
  226. cmark_node_type block_type, int start_line, int start_column)
  227. {
  228. assert(parent);
  229. // if 'parent' isn't the kind of cmark_node that can accept this child,
  230. // then back up til we hit a cmark_node that can.
  231. while (!can_contain(parent->type, block_type)) {
  232. finalize(parser, parent, start_line);
  233. parent = parent->parent;
  234. }
  235. cmark_node* child = make_block(block_type, start_line, start_column);
  236. child->parent = parent;
  237. if (parent->last_child) {
  238. parent->last_child->next = child;
  239. child->prev = parent->last_child;
  240. } else {
  241. parent->first_child = child;
  242. child->prev = NULL;
  243. }
  244. parent->last_child = child;
  245. return child;
  246. }
  247. typedef struct BlockStack {
  248. struct BlockStack *previous;
  249. cmark_node *next_sibling;
  250. } block_stack;
  251. // Walk through cmark_node and all children, recursively, parsing
  252. // string content into inline content where appropriate.
  253. static void process_inlines(cmark_node* cur, cmark_reference_map *refmap)
  254. {
  255. block_stack* stack = NULL;
  256. block_stack* newstack = NULL;
  257. while (cur != NULL) {
  258. switch (cur->type) {
  259. case NODE_PARAGRAPH:
  260. case NODE_HEADER:
  261. cmark_parse_inlines(cur, refmap);
  262. break;
  263. default:
  264. break;
  265. }
  266. if (cur->first_child) {
  267. newstack = (block_stack*)malloc(sizeof(block_stack));
  268. if (newstack == NULL) break;
  269. newstack->previous = stack;
  270. stack = newstack;
  271. stack->next_sibling = cur->next;
  272. cur = cur->first_child;
  273. } else {
  274. cur = cur->next;
  275. }
  276. while (cur == NULL && stack != NULL) {
  277. cur = stack->next_sibling;
  278. newstack = stack->previous;
  279. free(stack);
  280. stack = newstack;
  281. }
  282. }
  283. while (stack != NULL) {
  284. newstack = stack->previous;
  285. free(stack);
  286. stack = newstack;
  287. }
  288. }
  289. // Attempts to parse a list item marker (bullet or enumerated).
  290. // On success, returns length of the marker, and populates
  291. // data with the details. On failure, returns 0.
  292. static int parse_list_marker(chunk *input, int pos, cmark_list **dataptr)
  293. {
  294. unsigned char c;
  295. int startpos;
  296. cmark_list *data;
  297. startpos = pos;
  298. c = peek_at(input, pos);
  299. if ((c == '*' || c == '-' || c == '+') && !scan_hrule(input, pos)) {
  300. pos++;
  301. if (!isspace(peek_at(input, pos))) {
  302. return 0;
  303. }
  304. data = (cmark_list *)calloc(1, sizeof(*data));
  305. if(data == NULL) {
  306. return 0;
  307. } else {
  308. data->marker_offset = 0; // will be adjusted later
  309. data->list_type = CMARK_BULLET_LIST;
  310. data->bullet_char = c;
  311. data->start = 1;
  312. data->delimiter = CMARK_PERIOD_DELIM;
  313. data->tight = false;
  314. }
  315. } else if (isdigit(c)) {
  316. int start = 0;
  317. do {
  318. start = (10 * start) + (peek_at(input, pos) - '0');
  319. pos++;
  320. } while (isdigit(peek_at(input, pos)));
  321. c = peek_at(input, pos);
  322. if (c == '.' || c == ')') {
  323. pos++;
  324. if (!isspace(peek_at(input, pos))) {
  325. return 0;
  326. }
  327. data = (cmark_list *)calloc(1, sizeof(*data));
  328. if(data == NULL) {
  329. return 0;
  330. } else {
  331. data->marker_offset = 0; // will be adjusted later
  332. data->list_type = CMARK_ORDERED_LIST;
  333. data->bullet_char = 0;
  334. data->start = start;
  335. data->delimiter = (c == '.' ? CMARK_PERIOD_DELIM : CMARK_PAREN_DELIM);
  336. data->tight = false;
  337. }
  338. } else {
  339. return 0;
  340. }
  341. } else {
  342. return 0;
  343. }
  344. *dataptr = data;
  345. return (pos - startpos);
  346. }
  347. // Return 1 if list item belongs in list, else 0.
  348. static int lists_match(cmark_list *list_data, cmark_list *item_data)
  349. {
  350. return (list_data->list_type == item_data->list_type &&
  351. list_data->delimiter == item_data->delimiter &&
  352. // list_data->marker_offset == item_data.marker_offset &&
  353. list_data->bullet_char == item_data->bullet_char);
  354. }
  355. static cmark_node *finalize_document(cmark_parser *parser)
  356. {
  357. while (parser->current != parser->root) {
  358. finalize(parser, parser->current, parser->line_number);
  359. parser->current = parser->current->parent;
  360. }
  361. finalize(parser, parser->root, parser->line_number);
  362. process_inlines(parser->root, parser->refmap);
  363. return parser->root;
  364. }
  365. cmark_node *cmark_parse_file(FILE *f)
  366. {
  367. unsigned char buffer[4096];
  368. cmark_parser *parser = cmark_parser_new();
  369. size_t bytes;
  370. cmark_node *document;
  371. while ((bytes = fread(buffer, 1, sizeof(buffer), f)) > 0) {
  372. bool eof = bytes < sizeof(buffer);
  373. S_parser_feed(parser, buffer, bytes, eof);
  374. }
  375. document = cmark_parser_finish(parser);
  376. cmark_parser_free(parser);
  377. return document;
  378. }
  379. cmark_node *cmark_parse_document(const char *buffer, size_t len)
  380. {
  381. cmark_parser *parser = cmark_parser_new();
  382. cmark_node *document;
  383. S_parser_feed(parser, (const unsigned char *)buffer, len, true);
  384. document = cmark_parser_finish(parser);
  385. cmark_parser_free(parser);
  386. return document;
  387. }
  388. void
  389. cmark_parser_feed(cmark_parser *parser, const char *buffer, size_t len)
  390. {
  391. S_parser_feed(parser, (const unsigned char *)buffer, len, false);
  392. }
  393. static void
  394. S_parser_feed(cmark_parser *parser, const unsigned char *buffer, size_t len,
  395. bool eof)
  396. {
  397. const unsigned char *end = buffer + len;
  398. while (buffer < end) {
  399. const unsigned char *eol
  400. = (const unsigned char *)memchr(buffer, '\n',
  401. end - buffer);
  402. size_t line_len;
  403. if (eol) {
  404. line_len = eol + 1 - buffer;
  405. }
  406. else if (eof) {
  407. line_len = end - buffer;
  408. }
  409. else {
  410. strbuf_put(parser->linebuf, buffer, end - buffer);
  411. break;
  412. }
  413. if (parser->linebuf->size > 0) {
  414. strbuf_put(parser->linebuf, buffer, line_len);
  415. S_process_line(parser, parser->linebuf->ptr,
  416. parser->linebuf->size);
  417. strbuf_clear(parser->linebuf);
  418. }
  419. else {
  420. S_process_line(parser, buffer, line_len);
  421. }
  422. buffer += line_len;
  423. }
  424. }
  425. static void chop_trailing_hashtags(chunk *ch)
  426. {
  427. int n, orig_n;
  428. chunk_rtrim(ch);
  429. orig_n = n = ch->len - 1;
  430. // if string ends in space followed by #s, remove these:
  431. while (n >= 0 && peek_at(ch, n) == '#')
  432. n--;
  433. // Check for a be a space before the final #s:
  434. if (n != orig_n && n >= 0 && peek_at(ch, n) == ' ') {
  435. ch->len = n;
  436. chunk_rtrim(ch);
  437. }
  438. }
  439. static void
  440. S_process_line(cmark_parser *parser, const unsigned char *buffer, size_t bytes)
  441. {
  442. cmark_node* last_matched_container;
  443. int offset = 0;
  444. int matched = 0;
  445. int lev = 0;
  446. int i;
  447. cmark_list *data = NULL;
  448. bool all_matched = true;
  449. cmark_node* container;
  450. cmark_node* cur = parser->current;
  451. bool blank = false;
  452. int first_nonspace;
  453. int indent;
  454. chunk input;
  455. utf8proc_detab(parser->curline, buffer, bytes);
  456. // Add a newline to the end if not present:
  457. // TODO this breaks abstraction:
  458. if (parser->curline->ptr[parser->curline->size - 1] != '\n') {
  459. strbuf_putc(parser->curline, '\n');
  460. }
  461. input.data = parser->curline->ptr;
  462. input.len = parser->curline->size;
  463. // container starts at the document root.
  464. container = parser->root;
  465. parser->line_number++;
  466. // for each containing cmark_node, try to parse the associated line start.
  467. // bail out on failure: container will point to the last matching cmark_node.
  468. while (container->last_child && container->last_child->open) {
  469. container = container->last_child;
  470. first_nonspace = offset;
  471. while (peek_at(&input, first_nonspace) == ' ') {
  472. first_nonspace++;
  473. }
  474. indent = first_nonspace - offset;
  475. blank = peek_at(&input, first_nonspace) == '\n';
  476. if (container->type == NODE_BLOCK_QUOTE) {
  477. matched = indent <= 3 && peek_at(&input, first_nonspace) == '>';
  478. if (matched) {
  479. offset = first_nonspace + 1;
  480. if (peek_at(&input, offset) == ' ')
  481. offset++;
  482. } else {
  483. all_matched = false;
  484. }
  485. } else if (container->type == NODE_LIST_ITEM) {
  486. if (indent >= container->as.list.marker_offset +
  487. container->as.list.padding) {
  488. offset += container->as.list.marker_offset +
  489. container->as.list.padding;
  490. } else if (blank) {
  491. offset = first_nonspace;
  492. } else {
  493. all_matched = false;
  494. }
  495. } else if (container->type == NODE_CODE_BLOCK) {
  496. if (!container->as.code.fenced) { // indented
  497. if (indent >= CODE_INDENT) {
  498. offset += CODE_INDENT;
  499. } else if (blank) {
  500. offset = first_nonspace;
  501. } else {
  502. all_matched = false;
  503. }
  504. } else {
  505. // skip optional spaces of fence offset
  506. i = container->as.code.fence_offset;
  507. while (i > 0 && peek_at(&input, offset) == ' ') {
  508. offset++;
  509. i--;
  510. }
  511. }
  512. } else if (container->type == NODE_HEADER) {
  513. // a header can never contain more than one line
  514. all_matched = false;
  515. if (blank) {
  516. container->last_line_blank = true;
  517. }
  518. } else if (container->type == NODE_HTML) {
  519. if (blank) {
  520. container->last_line_blank = true;
  521. all_matched = false;
  522. }
  523. } else if (container->type == NODE_PARAGRAPH) {
  524. if (blank) {
  525. container->last_line_blank = true;
  526. all_matched = false;
  527. }
  528. }
  529. if (!all_matched) {
  530. container = container->parent; // back up to last matching cmark_node
  531. break;
  532. }
  533. }
  534. last_matched_container = container;
  535. // check to see if we've hit 2nd blank line, break out of list:
  536. if (blank && container->last_line_blank) {
  537. break_out_of_lists(parser, &container, parser->line_number);
  538. }
  539. // unless last matched container is code cmark_node, try new container starts:
  540. while (container->type != NODE_CODE_BLOCK &&
  541. container->type != NODE_HTML) {
  542. first_nonspace = offset;
  543. while (peek_at(&input, first_nonspace) == ' ')
  544. first_nonspace++;
  545. indent = first_nonspace - offset;
  546. blank = peek_at(&input, first_nonspace) == '\n';
  547. if (indent >= CODE_INDENT) {
  548. if (cur->type != NODE_PARAGRAPH && !blank) {
  549. offset += CODE_INDENT;
  550. container = add_child(parser, container, NODE_CODE_BLOCK, parser->line_number, offset + 1);
  551. container->as.code.fenced = false;
  552. container->as.code.fence_char = 0;
  553. container->as.code.fence_length = 0;
  554. container->as.code.fence_offset = 0;
  555. strbuf_init(&container->as.code.info, 0);
  556. } else { // indent > 4 in lazy line
  557. break;
  558. }
  559. } else if (peek_at(&input, first_nonspace) == '>') {
  560. offset = first_nonspace + 1;
  561. // optional following character
  562. if (peek_at(&input, offset) == ' ')
  563. offset++;
  564. container = add_child(parser, container, NODE_BLOCK_QUOTE, parser->line_number, offset + 1);
  565. } else if ((matched = scan_atx_header_start(&input, first_nonspace))) {
  566. offset = first_nonspace + matched;
  567. container = add_child(parser, container, NODE_HEADER, parser->line_number, offset + 1);
  568. int hashpos = chunk_strchr(&input, '#', first_nonspace);
  569. int level = 0;
  570. while (peek_at(&input, hashpos) == '#') {
  571. level++;
  572. hashpos++;
  573. }
  574. container->as.header.level = level;
  575. container->as.header.setext = false;
  576. } else if ((matched = scan_open_code_fence(&input, first_nonspace))) {
  577. container = add_child(parser, container, NODE_CODE_BLOCK, parser->line_number, first_nonspace + 1);
  578. container->as.code.fenced = true;
  579. container->as.code.fence_char = peek_at(&input, first_nonspace);
  580. container->as.code.fence_length = matched;
  581. container->as.code.fence_offset = first_nonspace - offset;
  582. strbuf_init(&container->as.code.info, 0);
  583. offset = first_nonspace + matched;
  584. } else if ((matched = scan_html_block_tag(&input, first_nonspace))) {
  585. container = add_child(parser, container, NODE_HTML, parser->line_number, first_nonspace + 1);
  586. // note, we don't adjust offset because the tag is part of the text
  587. } else if (container->type == NODE_PARAGRAPH &&
  588. (lev = scan_setext_header_line(&input, first_nonspace)) &&
  589. // check that there is only one line in the paragraph:
  590. strbuf_strrchr(&container->string_content, '\n',
  591. strbuf_len(&container->string_content) - 2) < 0) {
  592. container->type = NODE_HEADER;
  593. container->as.header.level = lev;
  594. container->as.header.setext = true;
  595. offset = input.len - 1;
  596. } else if (!(container->type == NODE_PARAGRAPH && !all_matched) &&
  597. (matched = scan_hrule(&input, first_nonspace))) {
  598. // it's only now that we know the line is not part of a setext header:
  599. container = add_child(parser, container, NODE_HRULE, parser->line_number, first_nonspace + 1);
  600. finalize(parser, container, parser->line_number);
  601. container = container->parent;
  602. offset = input.len - 1;
  603. } else if ((matched = parse_list_marker(&input, first_nonspace, &data))) {
  604. // compute padding:
  605. offset = first_nonspace + matched;
  606. i = 0;
  607. while (i <= 5 && peek_at(&input, offset + i) == ' ') {
  608. i++;
  609. }
  610. // i = number of spaces after marker, up to 5
  611. if (i >= 5 || i < 1 || peek_at(&input, offset) == '\n') {
  612. data->padding = matched + 1;
  613. if (i > 0) {
  614. offset += 1;
  615. }
  616. } else {
  617. data->padding = matched + i;
  618. offset += i;
  619. }
  620. // check container; if it's a list, see if this list item
  621. // can continue the list; otherwise, create a list container.
  622. data->marker_offset = indent;
  623. if (container->type != NODE_LIST ||
  624. !lists_match(&container->as.list, data)) {
  625. container = add_child(parser, container, NODE_LIST, parser->line_number,
  626. first_nonspace + 1);
  627. memcpy(&container->as.list, data, sizeof(*data));
  628. }
  629. // add the list item
  630. container = add_child(parser, container, NODE_LIST_ITEM, parser->line_number,
  631. first_nonspace + 1);
  632. /* TODO: static */
  633. memcpy(&container->as.list, data, sizeof(*data));
  634. free(data);
  635. } else {
  636. break;
  637. }
  638. if (accepts_lines(container->type)) {
  639. // if it's a line container, it can't contain other containers
  640. break;
  641. }
  642. }
  643. // what remains at offset is a text line. add the text to the
  644. // appropriate container.
  645. first_nonspace = offset;
  646. while (peek_at(&input, first_nonspace) == ' ')
  647. first_nonspace++;
  648. indent = first_nonspace - offset;
  649. blank = peek_at(&input, first_nonspace) == '\n';
  650. // cmark_node quote lines are never blank as they start with >
  651. // and we don't count blanks in fenced code for purposes of tight/loose
  652. // lists or breaking out of lists. we also don't set last_line_blank
  653. // on an empty list item.
  654. container->last_line_blank = (blank &&
  655. container->type != NODE_BLOCK_QUOTE &&
  656. container->type != NODE_HEADER &&
  657. (container->type != NODE_CODE_BLOCK &&
  658. container->as.code.fenced) &&
  659. !(container->type == NODE_LIST_ITEM &&
  660. container->first_child == NULL &&
  661. container->start_line == parser->line_number));
  662. cmark_node *cont = container;
  663. while (cont->parent) {
  664. cont->parent->last_line_blank = false;
  665. cont = cont->parent;
  666. }
  667. if (cur != last_matched_container &&
  668. container == last_matched_container &&
  669. !blank &&
  670. cur->type == NODE_PARAGRAPH &&
  671. strbuf_len(&cur->string_content) > 0) {
  672. add_line(cur, &input, offset);
  673. } else { // not a lazy continuation
  674. // finalize any blocks that were not matched and set cur to container:
  675. while (cur != last_matched_container) {
  676. finalize(parser, cur, parser->line_number);
  677. cur = cur->parent;
  678. assert(cur != NULL);
  679. }
  680. if (container->type == NODE_CODE_BLOCK &&
  681. !container->as.code.fenced) {
  682. add_line(container, &input, offset);
  683. } else if (container->type == NODE_CODE_BLOCK &&
  684. container->as.code.fenced) {
  685. matched = 0;
  686. if (indent <= 3 &&
  687. peek_at(&input, first_nonspace) == container->as.code.fence_char) {
  688. int fence_len = scan_close_code_fence(&input, first_nonspace);
  689. if (fence_len > container->as.code.fence_length)
  690. matched = 1;
  691. }
  692. if (matched) {
  693. // if closing fence, don't add line to container; instead, close it:
  694. finalize(parser, container, parser->line_number);
  695. container = container->parent; // back up to parent
  696. } else {
  697. add_line(container, &input, offset);
  698. }
  699. } else if (container->type == NODE_HTML) {
  700. add_line(container, &input, offset);
  701. } else if (blank) {
  702. // ??? do nothing
  703. } else if (container->type == NODE_HEADER) {
  704. chop_trailing_hashtags(&input);
  705. add_line(container, &input, first_nonspace);
  706. finalize(parser, container, parser->line_number);
  707. container = container->parent;
  708. } else if (accepts_lines(container->type)) {
  709. add_line(container, &input, first_nonspace);
  710. } else if (container->type != NODE_HRULE &&
  711. container->type != NODE_HEADER) {
  712. // create paragraph container for line
  713. container = add_child(parser, container, NODE_PARAGRAPH, parser->line_number, first_nonspace + 1);
  714. add_line(container, &input, first_nonspace);
  715. } else {
  716. assert(false);
  717. }
  718. parser->current = container;
  719. }
  720. strbuf_clear(parser->curline);
  721. }
  722. cmark_node *cmark_parser_finish(cmark_parser *parser)
  723. {
  724. if (parser->linebuf->size) {
  725. S_process_line(parser, parser->linebuf->ptr,
  726. parser->linebuf->size);
  727. strbuf_clear(parser->linebuf);
  728. }
  729. finalize_document(parser);
  730. strbuf_free(parser->curline);
  731. #if CMARK_DEBUG_NODES
  732. if (cmark_node_check(parser->root, stderr)) {
  733. abort();
  734. }
  735. #endif
  736. return parser->root;
  737. }