Sha256: 31fea9796f6c39ca6360f7ce7b4292d5eaa035b8ae3dec867c4fcf9791b76fc4

Contents?: true

Size: 614 Bytes

Versions: 2

Compression:

Stored size: 614 Bytes

Contents

/*
 * rdiscount extension discount configuration
 */
#ifndef __MARKDOWN_D
#define __MARKDOWN_D 1

/* tabs are four spaces */
#define TABSTOP 4

/* enable fenced code blocks */
#define WITH_FENCED_CODE 1

/* include - and _ as acceptable characters in HTML tag names */
#define WITH_GITHUB_TAGS 1

/* these are setup by extconf.rb */
#if HAVE_RANDOM
#define COINTOSS() (random()&1)
#elif HAVE_RAND
#define COINTOSS() (rand()&1)
#endif

#if HAVE_SRANDOM
#define INITRNG(x) srandom((unsigned int)x)
#elif HAVE_SRAND
#define INITRNG(x) srand((unsigned int)x)
#endif

#include "ruby-config.h"

#endif/* __MARKDOWN_D */

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
challah-1.0.0 vendor/bundle/gems/rdiscount-2.1.6/ext/config.h
rdiscount-2.1.6 ext/config.h