view vendor/gems/coderay-0.9.7/lib/coderay/encoders/div.rb @ 777:facded821cee feature_14

Fixes Bug #321 - testing for true as a string in the controller; test the status of the fieldsets before toggling them in the js script.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Thu, 17 Nov 2011 22:12:45 +0000
parents 0579821a129a
children
line wrap: on
line source
module CodeRay
module Encoders

  load :html

  class Div < HTML

    FILE_EXTENSION = 'div.html'

    register_for :div

    DEFAULT_OPTIONS = HTML::DEFAULT_OPTIONS.merge \
      :css => :style,
      :wrap => :div

  end

end
end