Sha256: 4656e3f5bc647b080ea708009ee6d31a415ac2f0a4ead125e16aaf8b54b1ce46

Contents?: true

Size: 866 Bytes

Versions: 11

Compression:

Stored size: 866 Bytes

Contents

module RevealCK
  # 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/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'

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
reveal-ck-4.0.0 lib/reveal-ck/markdown.rb
reveal-ck-3.9.2 lib/reveal-ck/markdown.rb
reveal-ck-3.9.1 lib/reveal-ck/markdown.rb
reveal-ck-3.9.0 lib/reveal-ck/markdown.rb
reveal-ck-3.8.1 lib/reveal-ck/markdown.rb
reveal-ck-3.8.0 lib/reveal-ck/markdown.rb
reveal-ck-3.7.0 lib/reveal-ck/markdown.rb
reveal-ck-3.6.0 lib/reveal-ck/markdown.rb
reveal-ck-3.5.1 lib/reveal-ck/markdown.rb
reveal-ck-3.5.0 lib/reveal-ck/markdown.rb
reveal-ck-3.4.0 lib/reveal-ck/markdown.rb