summaryrefslogtreecommitdiff
path: root/lib/coderay/styles/style.rb
blob: a3353861b9a6858c183fb6d4fcbde4d6784f8fcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module CodeRay
  
  module Styles
    
    # Base class for styles.
    # 
    # Styles are used by Encoders::HTML to colorize tokens.
    class Style
      extend Plugin
      plugin_host Styles
      
      DEFAULT_OPTIONS = { }  # :nodoc:
      
    end
    
  end
  
end