X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=include%2Fmarkdown.h;h=9c29d868f86d0e174d02d994000c87b7f71b3fe0;hb=9f1e6a612e7e9ebb4bc703b8e75a723ed7c8779c;hp=28b48e066c501336d184d0dbc33dd45354d9e472;hpb=76cedc9066d3fd65788f86ea5d0b71db98bb6e24;p=smdp.git diff --git a/include/markdown.h b/include/markdown.h index 28b48e0..9c29d86 100644 --- a/include/markdown.h +++ b/include/markdown.h @@ -14,13 +14,12 @@ #define CHECK_BIT(var, pos) ((var) & (1<<(pos))) enum line_bitmask { - IS_HEADER, - IS_HEADER2, + IS_H1, + IS_H2, IS_QUOTE, IS_CODE, - IS_LIST, - IS_NUMLIST, - IS_HR + IS_HR, + IS_EMPTY }; typedef struct _line_t { @@ -38,9 +37,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; @@ -51,6 +48,7 @@ page_t *next_page(page_t *prev); document_t *new_document(); int is_utf8(char ch); int next_nonblank(cstring_t *text, int i); +int next_blank(cstring_t *text, int i); document_t *markdown_load(FILE *input); #endif // !defined( MARKDOWN_H )