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/node.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/node.h') diff --git a/src/node.h b/src/node.h index fb3b667..c0c43d3 100644 --- a/src/node.h +++ b/src/node.h @@ -52,6 +52,7 @@ struct cmark_node { int start_line; int start_column; int end_line; + int end_column; bool open; bool last_line_blank; -- cgit v1.2.3