summaryrefslogtreecommitdiff
path: root/src/scanners.h
blob: f96c42d0a711a8f419a9d577691d6c0f0d7513d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "stmd.h"

int scan_autolink_uri(chunk *c, int offset);
int scan_autolink_email(chunk *c, int offset);
int scan_html_tag(chunk *c, int offset);
int scan_html_block_tag(chunk *c, int offset);
int scan_link_url(chunk *c, int offset);
int scan_link_title(chunk *c, int offset);
int scan_spacechars(chunk *c, int offset);
int scan_atx_header_start(chunk *c, int offset);
int scan_setext_header_line(chunk *c, int offset);
int scan_hrule(chunk *c, int offset);
int scan_open_code_fence(chunk *c, int offset);
int scan_close_code_fence(chunk *c, int offset, int len);
int scan_entity(chunk *c, int offset);