Sha256: 40cb580628dc8f19c1f9da003cdf38aaed11fcbe9d558dec742e2c28ab89bbaf

Contents?: true

Size: 1.02 KB

Versions: 4

Compression:

Stored size: 1.02 KB

Contents

#ifndef CMARK_SYNTAX_EXTENSION_H
#define CMARK_SYNTAX_EXTENSION_H

#include "cmark.h"
#include "cmark_extension_api.h"

struct cmark_syntax_extension {
  cmark_match_block_func          last_block_matches;
  cmark_open_block_func           try_opening_block;
  cmark_match_inline_func         match_inline;
  cmark_inline_from_delim_func    insert_inline_from_delim;
  cmark_llist                   * special_inline_chars;
  char                          * name;
  void                          * priv;
  cmark_free_func                 free_function;
  cmark_get_type_string_func      get_type_string_func;
  cmark_can_contain_func          can_contain_func;
  cmark_contains_inlines_func     contains_inlines_func;
  cmark_common_render_func        commonmark_render_func;
  cmark_common_render_func        latex_render_func;
  cmark_common_render_func        man_render_func;
  cmark_html_render_func          html_render_func;
  cmark_html_filter_func          html_filter_func;
  cmark_postprocess_func          postprocess_func;
};

#endif

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
commonmarker-0.14.2 ext/commonmarker/cmark/src/syntax_extension.h
commonmarker-0.14.1 ext/commonmarker/cmark/src/syntax_extension.h
commonmarker-0.14.0 ext/commonmarker/cmark/src/syntax_extension.h
commonmarker-0.11.0 ext/commonmarker/cmark/src/syntax_extension.h