Class: RevealCK::Markdown::PreProcessorForDividers

Inherits:
Object
  • Object
show all
Defined in:
lib/reveal-ck/markdown/pre_processor_for_dividers.rb

Overview

This class embodies the preprocessing that starts with a traditional Markdown document and turns it into something that can later “become” reveal.js slides.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(doc) ⇒ PreProcessorForDividers

Returns a new instance of PreProcessorForDividers.



8
9
10
# File 'lib/reveal-ck/markdown/pre_processor_for_dividers.rb', line 8

def initialize(doc)
  @doc = doc
end

Instance Attribute Details

#docObject (readonly)

Returns the value of attribute doc.



7
8
9
# File 'lib/reveal-ck/markdown/pre_processor_for_dividers.rb', line 7

def doc
  @doc
end

Instance Method Details

#processObject



12
13
14
15
16
# File 'lib/reveal-ck/markdown/pre_processor_for_dividers.rb', line 12

def process
  add_first_slide_divider_if_needed
  add_last_slide_vertical_if_needed
  add_last_slide_divider_if_needed
end