diff options
author | John MacFarlane <[email protected]> | 2014-12-28 17:52:09 -0800 |
---|---|---|
committer | John MacFarlane <[email protected]> | 2014-12-28 17:52:09 -0800 |
commit | 19a3a5ea4f73e8757b6d208f3be003bc2828e752 (patch) | |
tree | 9baf713277778e6812ae4a9b73425a18c1fe2d69 /src/node.h | |
parent | d19558961c1b579ddb2f5c62f1b6a65be3324333 (diff) |
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.
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |