diff options
Diffstat (limited to 'lib/coderay/encoders/page.rb')
-rw-r--r-- | lib/coderay/encoders/page.rb | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/coderay/encoders/page.rb b/lib/coderay/encoders/page.rb index 74bdc55..1ed7985 100644 --- a/lib/coderay/encoders/page.rb +++ b/lib/coderay/encoders/page.rb @@ -1,21 +1,21 @@ module CodeRay
module Encoders
-
- load :html
- class Page < HTML
+ load :html
- FILE_EXTENSION = 'html'
+ class Page < HTML
- register_for :page
+ FILE_EXTENSION = 'html'
- DEFAULT_OPTIONS = HTML::DEFAULT_OPTIONS.merge({
- :css => :class,
- :wrap => :page,
- :line_numbers => :table
- })
+ register_for :page
- end
+ DEFAULT_OPTIONS = HTML::DEFAULT_OPTIONS.merge({
+ :css => :class,
+ :wrap => :page,
+ :line_numbers => :table
+ })
+
+ end
end
end
|