summaryrefslogtreecommitdiff
path: root/lib/coderay/encoders/div.rb
blob: 2379a4c3b5a9d0e3b433b90e9b19d0caf1c2e2e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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