diff options
author | Vicent Marti <[email protected]> | 2014-09-02 13:18:04 +0200 |
---|---|---|
committer | Vicent Marti <[email protected]> | 2014-09-09 03:39:15 +0200 |
commit | 582674e662d1f8757350c51486a5e0a837195e15 (patch) | |
tree | 1d56c46f850d441492500dc2c3983e469c1b3581 /src/stmd.h | |
parent | e216094e2192c05ddbd0988458eb8c0012e7baf8 (diff) |
ffffix
Diffstat (limited to 'src/stmd.h')
-rw-r--r-- | src/stmd.h | 13 |
1 files changed, 4 insertions, 9 deletions
@@ -105,19 +105,14 @@ extern block* add_child(block* parent, int block_type, int start_line, int start_column); void free_blocks(block* e); -block *stmd_parse_document(const char *buffer, size_t len); - -// FOR NOW: -void process_inlines(block* cur, reference** refmap); -void incorporate_line(gh_buf *ln, int line_number, block** curptr); -void finalize(block* b, int line_number); +extern block *stmd_parse_document(const unsigned char *buffer, size_t len); +extern block *stmd_parse_file(FILE *f); void print_inlines(inl* ils, int indent); void print_blocks(block* blk, int indent); -/* TODO */ -// int blocks_to_html(block* b, bstring* result, bool tight); -// int inlines_to_html(inl* b, bstring* result); +void blocks_to_html(gh_buf *html, block *b, bool tight); +void inlines_to_html(gh_buf *html, inl *b); void utf8proc_case_fold(gh_buf *dest, const unsigned char *str, int len); |