Sha256: e1f7e2c1748de1f5ee8626fe3be603a2791204b8a0818df7395b76de1172e6d9
Contents?: true
Size: 507 Bytes
Versions: 21
Compression:
Stored size: 507 Bytes
Contents
#ifndef REDCARPET_H__ #define REDCARPET_H__ #define RSTRING_NOT_MODIFIED #include "ruby.h" #include <stdio.h> #include <ruby/encoding.h> #include "markdown.h" #include "html.h" #define CSTR2SYM(s) (ID2SYM(rb_intern((s)))) void Init_redcarpet_rndr(); struct redcarpet_renderopt { struct html_renderopt html; VALUE link_attributes; VALUE self; VALUE base_class; rb_encoding *active_enc; }; struct rb_redcarpet_rndr { struct sd_callbacks callbacks; struct redcarpet_renderopt options; }; #endif
Version data entries
21 entries across 20 versions & 3 rubygems