aboutsummaryrefslogtreecommitdiff
path: root/src/inlines.h
blob: b4897d7a89ae5662c7943c84cd0ed5ea11d00cc1 (plain)
  1. #ifndef CMARK_INLINES_H
  2. #define CMARK_INLINES_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. unsigned char *cmark_clean_url(chunk *url);
  7. unsigned char *cmark_clean_title(chunk *title);
  8. void cmark_parse_inlines(cmark_node* parent, cmark_reference_map *refmap);
  9. int cmark_parse_reference_inline(strbuf *input, cmark_reference_map *refmap);
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif