diff options
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -7,6 +7,7 @@ extern "C" { #include "cmark.h" #include "buffer.h" +#include "chunk.h" typedef enum { // Block @@ -86,12 +87,10 @@ struct cmark_node { bool open; bool last_line_blank; - // Temp - cmark_node_inl *inline_content; - cmark_strbuf string_content; union { + cmark_chunk literal; cmark_list list; cmark_fenced_code code; cmark_header header; |