module RevealCK # This module defines how reveal-ck works with redcarpet to produce # slides from markdown. module Markdown REVEALCK_SYMBOL_FOR_DIVIDER = '
DIVIDER
'.freeze REVEALCK_SYMBOL_FOR_VERTICAL_START = '
VERTICAL_START
'.freeze REVEALCK_SYMBOL_FOR_VERTICAL_END = '
VERTICAL_END
'.freeze REVEALCK_SYMBOL_FOR_EMOJI_UNDERSCORE = 'EU'.freeze end end require_relative 'markdown/slide_markdown' require_relative 'markdown/pre_processor' require_relative 'markdown/post_processor' require_relative 'markdown/slide_markdown_template'