make header lines nameless
authorMichael Göhler <somebody.here@gmx.de>
Sun, 17 Aug 2014 10:58:52 +0000 (12:58 +0200)
committerMichael Göhler <somebody.here@gmx.de>
Sun, 17 Aug 2014 10:58:52 +0000 (12:58 +0200)
include/markdown.h
markdown.c

index 28b48e0..ee6dff7 100644 (file)
@@ -38,9 +38,7 @@ typedef struct _page_t {
 } page_t;
 
 typedef struct _document_t {
-    line_t *title;
-    line_t *author;
-    line_t *date;
+    line_t *header;
     page_t *page;
 } document_t;
 
index e578fa9..90219e5 100644 (file)
@@ -35,7 +35,7 @@ page_t *next_page(page_t *prev) {
 
 document_t *new_document() {
     document_t *x = malloc(sizeof(document_t));
-    x->title = x->author = x->date = (void*)0;
+    x->header = (void*)0;
     x->page = (void*)0;
     return x;
 }