Sha256: 867b42b57080ea25e6a4671a20026f4451000dfb3e47bff4794445be14408286

Contents?: true

Size: 432 Bytes

Versions: 5

Compression:

Stored size: 432 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;
	cmark_strbuf *curline;
	int last_line_length;
	cmark_strbuf *linebuf;
	int options;
};

#ifdef __cplusplus
}
#endif

#endif

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
commonmarker-0.1.3 ext/commonmarker/cmark/src/parser.h
commonmarker-0.1.2 ext/commonmarker/cmark/src/parser.h
commonmarker-0.1.1 ext/commonmarker/cmark/src/parser.h
commonmarker-0.1.0 ext/commonmarker/cmark/src/parser.h
commonmarker-0.0.1 ext/commonmarker/cmark/src/parser.h