diff options
author | Nick Wellnhofer <wellnhofer@aevum.de> | 2015-05-09 15:57:35 +0200 |
---|---|---|
committer | Nick Wellnhofer <wellnhofer@aevum.de> | 2015-05-14 14:36:01 +0200 |
commit | da23f80b53d47c76a85ba163cb0fb426050f3738 (patch) | |
tree | 6e63fe0cead79a82f8d1ce27ef0b68e7d4114b27 /src/references.h | |
parent | bc5f16f146558a1faf9be6abe034755421f6ecce (diff) |
Store link URL and title as cmark_chunk
Diffstat (limited to 'src/references.h')
-rw-r--r-- | src/references.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/references.h b/src/references.h index 69325bb..a360cd5 100644 --- a/src/references.h +++ b/src/references.h @@ -12,8 +12,8 @@ extern "C" { struct cmark_reference { struct cmark_reference *next; unsigned char *label; - unsigned char *url; - unsigned char *title; + cmark_chunk url; + cmark_chunk title; unsigned int hash; }; |