summaryrefslogtreecommitdiff
path: root/lib/coderay/encoders/div.rb
blob: ce558f2e1b3c0382736d152769a070e7091dd741 (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