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