blob: fa614b3be07612a2465610af4f57aa3dd2453f7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef CMARK_SMART_H
#define CMARK_SMART_H
#include <stddef.h>
#include <stdarg.h>
#include "config.h"
#ifdef __cplusplus
extern "C" {
#endif
void escape_with_smart(cmark_strbuf *buf,
cmark_node *node,
void (*escape)(cmark_strbuf *, const unsigned char *, int),
const char *left_double_quote,
const char *right_double_quote,
const char *left_single_quote,
const char *right_single_quote,
const char *em_dash,
const char *en_dash,
const char *ellipses);
#ifdef __cplusplus
}
#endif
#endif
|