Sha256: 42240a4cfabad459343fcc2672911bce33ca06a80a2635e0722df85607fa6666

Contents?: true

Size: 577 Bytes

Versions: 6

Compression:

Stored size: 577 Bytes

Contents

#ifndef CMARK_AST_H
#define CMARK_AST_H

#include <stdio.h>
#include "node.h"
#include "buffer.h"

#ifdef __cplusplus
extern "C" {
#endif

#define MAX_LINK_LABEL_LENGTH 1000

struct cmark_parser {
  struct cmark_reference_map *refmap;
  struct cmark_node *root;
  struct cmark_node *current;
  int line_number;
  bufsize_t offset;
  bufsize_t column;
  bufsize_t first_nonspace;
  bufsize_t first_nonspace_column;
  int indent;
  bool blank;
  cmark_strbuf *curline;
  bufsize_t last_line_length;
  cmark_strbuf *linebuf;
  int options;
};

#ifdef __cplusplus
}
#endif

#endif

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
commonmarker-0.7.0 ext/commonmarker/cmark/src/parser.h
commonmarker-0.6.0 ext/commonmarker/cmark/src/parser.h
commonmarker-0.5.1 ext/commonmarker/cmark/src/parser.h
commonmarker-0.5.0 ext/commonmarker/cmark/src/parser.h
commonmarker-0.4.1 ext/commonmarker/cmark/src/parser.h
commonmarker-0.4.0 ext/commonmarker/cmark/src/parser.h