mirror of
https://github.com/swiftlang/swift-cmark.git
synced 2026-01-18 17:31:20 +01:00
* cmark -> cmark-gfm in most places * normalize filenames, exports * ensure some more #defines don't conflict
30 lines
761 B
C
30 lines
761 B
C
#ifndef CMARK_INLINES_H
|
|
#define CMARK_INLINES_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "references.h"
|
|
|
|
cmark_chunk cmark_clean_url(cmark_mem *mem, cmark_chunk *url);
|
|
cmark_chunk cmark_clean_title(cmark_mem *mem, cmark_chunk *title);
|
|
|
|
CMARK_GFM_EXPORT
|
|
void cmark_parse_inlines(cmark_parser *parser,
|
|
cmark_node *parent,
|
|
cmark_map *refmap,
|
|
int options);
|
|
|
|
bufsize_t cmark_parse_reference_inline(cmark_mem *mem, cmark_chunk *input,
|
|
cmark_map *refmap);
|
|
|
|
void cmark_inlines_add_special_character(unsigned char c, bool emphasis);
|
|
void cmark_inlines_remove_special_character(unsigned char c, bool emphasis);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|