summaryrefslogtreecommitdiffstats
path: root/vendor/plugins/coderay-0.7.6.227/lib/coderay/encoders/div.rb
blob: 3d55415f7a2b3e0e2aa536f756ed54f75d0070c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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