summaryrefslogtreecommitdiff
path: root/src/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/node.h')
-rw-r--r--src/node.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/node.h b/src/node.h
index 27c815d..64a9fce 100644
--- a/src/node.h
+++ b/src/node.h
@@ -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;