view vendor/gems/coderay-0.9.7/lib/coderay/encoders/div.rb @ 760:b2a9e64b8283 feature_14

Fixes Bug #322, but is not self-contained in the plugin (basically I'm editing the original projects controller…)
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Fri, 11 Nov 2011 18:32:51 +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