summaryrefslogtreecommitdiff
path: root/src/node.h
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2015-05-09 15:57:35 +0200
committerNick Wellnhofer <wellnhofer@aevum.de>2015-05-14 14:36:01 +0200
commitda23f80b53d47c76a85ba163cb0fb426050f3738 (patch)
tree6e63fe0cead79a82f8d1ce27ef0b68e7d4114b27 /src/node.h
parentbc5f16f146558a1faf9be6abe034755421f6ecce (diff)
Store link URL and title as cmark_chunk
Diffstat (limited to 'src/node.h')
-rw-r--r--src/node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node.h b/src/node.h
index 7a45d42..911a18f 100644
--- a/src/node.h
+++ b/src/node.h
@@ -38,8 +38,8 @@ typedef struct {
} cmark_header;
typedef struct {
- unsigned char *url;
- unsigned char *title;
+ cmark_chunk url;
+ cmark_chunk title;
} cmark_link;
struct cmark_node {