initialize

in _plugins/ideal_image_slider.rb [37:53]


    def initialize(name, markup, tokens)
      if markup =~ Height
        @slider_height = "\'#{$1}\'"
      elsif markup =~ Height_Numeric
        @slider_height = "#{$1}"
      else
        @slider_height = "\'auto\'"
      end
      if markup =~ Bullets
        @slider_bullets = "true"
      end
      if markup =~ Captions
        @slider_captions = "true"
      end
      super
    end