From 46ec4da981af45591d25cb54c47a0afd061306c2 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Sat, 29 Nov 2014 17:05:00 +0100 Subject: Push parser interface Replace cmark_parser_process_line with cmark_parser_push that takes arbitrary chunks of data. Also fixes #211. --- src/parser.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/parser.h') diff --git a/src/parser.h b/src/parser.h index e0ed507..9d65b67 100644 --- a/src/parser.h +++ b/src/parser.h @@ -17,6 +17,7 @@ struct cmark_parser { struct cmark_node* current; int line_number; cmark_strbuf *curline; + cmark_strbuf *linebuf; }; #ifdef __cplusplus -- cgit v1.2.3