summaryrefslogtreecommitdiff
path: root/src/cmark.c
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2014-11-16 10:33:49 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2014-11-16 10:33:49 -0800
commitb7f6e3f775705029df262aa313a0cd17ee3073cb (patch)
tree570a7611eeff2b9e93f24ac61f6f8626e045ad0d /src/cmark.c
parentf8b6f2e02fd21477193f1f2471421f4adf19a790 (diff)
Moved AST details from public header cmark.h to private ast.h.
Diffstat (limited to 'src/cmark.c')
-rw-r--r--src/cmark.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cmark.c b/src/cmark.c
index 8f379bf..85e1adb 100644
--- a/src/cmark.c
+++ b/src/cmark.c
@@ -6,6 +6,7 @@
#include "html/houdini.h"
#include "cmark.h"
#include "buffer.h"
+#include "ast.h"
unsigned char *cmark_markdown_to_html(unsigned char *text, int len)
{