From 6e25c889cf33a6217a9b4cf37ea1a6361883901b Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 16 Dec 2014 12:01:19 -0800 Subject: Added 'literal' field to 'code' struct. In the last few commits we were using as.code.fenced and as.literal at the same time for NODE_CODE_BLOCK, which obviously led to problems. --- 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 199f020..fb3b667 100644 --- a/src/node.h +++ b/src/node.h @@ -27,6 +27,7 @@ typedef struct { int fence_offset; unsigned char fence_char; cmark_chunk info; + cmark_chunk literal; } cmark_code; typedef struct { -- cgit v1.2.3