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