Sha256: 92bc3c103ee055e8a390674b5d8aa12242573958635e7b3121801798e5dc85fa

Contents?: true

Size: 1.25 KB

Versions: 9

Compression:

Stored size: 1.25 KB

Contents

#ifndef CMARK_SYNTAX_EXTENSION_H
#define CMARK_SYNTAX_EXTENSION_H

#include "cmark.h"
#include "cmark_extension_api.h"
#include "config.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;
  bool                            emphasis;
  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        plaintext_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;
  cmark_opaque_free_func          opaque_free_func;
  cmark_commonmark_escape_func    commonmark_escape_func;
};

#endif

Version data entries

9 entries across 8 versions & 2 rubygems

Version Path
commonmarker-0.17.11 ext/commonmarker/syntax_extension.h
commonmarker-0.17.10 ext/commonmarker/syntax_extension.h
tdiary-5.0.8 vendor/bundle/gems/commonmarker-0.17.9/ext/commonmarker/syntax_extension.h
commonmarker-0.17.9 ext/commonmarker/syntax_extension.h
commonmarker-0.17.8 ext/commonmarker/syntax_extension.h
commonmarker-0.17.7.1 ext/commonmarker/syntax_extension.h
commonmarker-0.17.7 ext/commonmarker/cmark-upstream/src/syntax_extension.h
commonmarker-0.17.7 ext/commonmarker/syntax_extension.h
commonmarker-0.17.6 ext/commonmarker/cmark/src/syntax_extension.h