add comment to common.h
[smdp.git] / include / parser.h
index 2690b20..4eb9dfe 100644 (file)
  *
  */
 
+#include "common.h"
 #include "markdown.h"
 
 #define EXPAND_TABS 4
 #define CODE_INDENT 4
+#define UNORDERED_LIST_MAX_LEVEL 3
 
 deck_t *markdown_load(FILE *input);
 int markdown_analyse(cstring_t *text);
@@ -46,6 +48,7 @@ void markdown_debug(deck_t *deck, int debug);
 int is_utf8(char ch);
 int length_utf8(char ch);
 int next_nonblank(cstring_t *text, int i);
+int prev_blank(cstring_t *text, int i);
 int next_blank(cstring_t *text, int i);
 int next_word(cstring_t *text, int i);