Module: Slideshow::DeckFilter
- Included in:
- Deck
- Defined in:
- lib/slideshow/models/deck.rb
Instance Method Summary collapse
- #add_slide_directive_before_div_h1(content) ⇒ Object
-
#add_slide_directive_before_h1(content) ⇒ Object
add slide directive before h1 (tells slideshow gem where to break slides).
- #add_slide_directive_before_h2(content) ⇒ Object
Instance Method Details
#add_slide_directive_before_div_h1(content) ⇒ Object
60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/slideshow/models/deck.rb', line 60 def ( content ) = 0 content = content.gsub( /<div[^>]*>\s*<h1/ ) do |match| += 1 "\n<!-- _S9SLIDE_ -->\n#{Regexp.last_match(0)}" end puts " Adding #{} slide breaks (using div_h1 rule)..." content end |
#add_slide_directive_before_h1(content) ⇒ Object
add slide directive before h1 (tells slideshow gem where to break slides)
e.g. changes: <h1 id=‘optional’ class=‘optional’>
to
html comment -> _S9SLIDE_ (note: rdoc can't handle html comments?)
<h1 id=‘optional’ class=‘optional’>
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/slideshow/models/deck.rb', line 16 def ( content ) # mark h1 for getting wrapped into slide divs # note: use just <h1 since some processors add ids e.g. <h1 id='x'> = 0 content = content.gsub( /<h1/ ) do |match| += 1 "\n<!-- _S9SLIDE_ -->\n#{Regexp.last_match(0)}" end puts " Adding #{} slide breaks (using h1 rule)..." content end |
#add_slide_directive_before_h2(content) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/slideshow/models/deck.rb', line 33 def ( content ) = 0 content = content.gsub( /<h2/ ) do |match| += 1 "\n<!-- _S9SLIDE_ -->\n#{Regexp.last_match(0)}" end puts " Adding #{} slide breaks (using h2 rule)..." content end |