Sha256: c9c11b2611a7dfe9e6380c9f6ff2ed1b16585f4da6720e506e9fbbdb3a6432d4
Contents?: true
Size: 619 Bytes
Versions: 3
Compression:
Stored size: 619 Bytes
Contents
#ifndef PARSING_FUNCTIONS_H #define PARSING_FUNCTIONS_H /* parsing_functions.c - Functions for parsing markdown and * freeing element lists. */ #include "markdown_peg.h" /* free_element_list - free list of elements recursively */ void free_element_list(element * elt); /* free_element - free element and contents */ void free_element(element *elt); element * parse_references(char *string, int extensions); element * parse_notes(char *string, int extensions, element *reference_list); element * parse_markdown(char *string, int extensions, element *reference_list, element *note_list, element *label_list); #endif
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rpeg-multimarkdown-0.2.2 | ext/parsing_functions.h |
rpeg-multimarkdown-0.2.1 | ext/parsing_functions.h |
rpeg-multimarkdown-0.2 | ext/parsing_functions.h |