From 19a3a5ea4f73e8757b6d208f3be003bc2828e752 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sun, 28 Dec 2014 17:52:09 -0800 Subject: Added end_column to cmark_node struct. API exports cmark_node_get_column. XML writer indicates start and end line and column for block-level nodes. --- 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 9d65b67..3c8def9 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; + int last_line_length; cmark_strbuf *linebuf; }; -- cgit v1.2.3