slideshow 0.9.4 → 0.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/slideshow.rb CHANGED
@@ -51,7 +51,7 @@ require 'slideshow/filters/slide_filter'
51
51
 
52
52
  module Slideshow
53
53
 
54
- VERSION = '0.9.4'
54
+ VERSION = '0.9.5'
55
55
 
56
56
  # version string for generator meta tag (includes ruby version)
57
57
  def Slideshow.generator
@@ -21,13 +21,13 @@ module Slideshow
21
21
  def pandoc_ruby_to_s5( content )
22
22
  content = PandocRuby.new( content, {:from => :markdown, :to => :s5}, :smart ).convert
23
23
  content = content.gsub(/class="incremental"/,'class="step"')
24
- # content = content.to_a[13..-1].join # remove the layout div
24
+ content = content.to_a[13..-1].join # remove the layout div
25
25
  end
26
26
 
27
27
  def pandoc_ruby_to_s5_incremental( content )
28
28
  content = PandocRuby.new( content, {:from => :markdown, :to => :s5 }, :incremental, :smart ).convert
29
29
  content = content.gsub(/class="incremental"/,'class="step"')
30
- # content = content.to_a[13..-1].join # remove the layout div
30
+ content = content.to_a[13..-1].join # remove the layout div
31
31
  end
32
32
 
33
33
  def rdiscount_to_html( content )
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slideshow
3
3
  version: !ruby/object:Gem::Version
4
- hash: 51
4
+ hash: 49
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
- - 4
10
- version: 0.9.4
9
+ - 5
10
+ version: 0.9.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Gerald Bauer