aboutsummaryrefslogtreecommitdiff
path: root/src/scanners.h
blob: b6e586bb9fc4ffb0edec096eefb7e636c7ed4340 (plain)
  1. #include "buffer.h"
  2. int scan_autolink_uri(const gh_buf *s, int pos);
  3. int scan_autolink_email(const gh_buf *s, int pos);
  4. int scan_html_tag(const gh_buf *s, int pos);
  5. int scan_html_block_tag(const gh_buf *s, int pos);
  6. int scan_link_url(const gh_buf *s, int pos);
  7. int scan_link_title(const gh_buf *s, int pos);
  8. int scan_spacechars(const gh_buf *s, int pos);
  9. int scan_atx_header_start(const gh_buf *s, int pos);
  10. int scan_setext_header_line(const gh_buf *s, int pos);
  11. int scan_hrule(const gh_buf *s, int pos);
  12. int scan_open_code_fence(const gh_buf *s, int pos);
  13. int scan_close_code_fence(const gh_buf *s, int pos, int len);
  14. int scan_entity(const gh_buf *s, int pos);