lib/reveal-ck/markdown.rb in reveal-ck-3.3.1 vs lib/reveal-ck/markdown.rb in reveal-ck-3.4.0
- old
+ new
@@ -1,15 +1,19 @@
module RevealCK
- # This module defines how reveal-ck works with redcarpet to produce
+ # This module defines how reveal-ck works with kramdown to produce
# slides from markdown.
module Markdown
REVEALCK_SYMBOL_FOR_DIVIDER = '<div>DIVIDER</div>'.freeze
+ REVEALCK_SYMBOL_FOR_NOTES_OPEN = '<div>NOTES_OPEN</div>'.freeze
+ REVEALCK_SYMBOL_FOR_NOTES_CLOSE = '<div>NOTES_CLOSE</div>'.freeze
REVEALCK_SYMBOL_FOR_VERTICAL_START = '<div>VERTICAL_START</div>'.freeze
REVEALCK_SYMBOL_FOR_VERTICAL_END = '<div>VERTICAL_END</div>'.freeze
REVEALCK_SYMBOL_FOR_EMOJI_UNDERSCORE = 'EU'.freeze
end
end
-require_relative 'markdown/slide_markdown'
+require_relative 'markdown/pre_processor_for_emoji'
+require_relative 'markdown/pre_processor_for_dividers'
+require_relative 'markdown/pre_processor_transforms'
require_relative 'markdown/pre_processor'
require_relative 'markdown/post_processor'
require_relative 'markdown/slide_markdown_template'