diff options
author | murphy <murphy@rubychan.de> | 2010-02-13 05:10:22 +0000 |
---|---|---|
committer | murphy <murphy@rubychan.de> | 2010-02-13 05:10:22 +0000 |
commit | 1bcab9fe0cec2888b6d025e6f028fc5fca36a649 (patch) | |
tree | b783e89369153e60dbc47e1f0f0b03045bb9d364 /lib/coderay/style.rb | |
parent | ab3e76ace4d6f9df6071d25c788018a7b8852a9c (diff) | |
download | coderay-1bcab9fe0cec2888b6d025e6f028fc5fca36a649.tar.gz |
Documentation.
Diffstat (limited to 'lib/coderay/style.rb')
-rw-r--r-- | lib/coderay/style.rb | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/lib/coderay/style.rb b/lib/coderay/style.rb index c2977c5..df4704f 100644 --- a/lib/coderay/style.rb +++ b/lib/coderay/style.rb @@ -1,20 +1,23 @@ module CodeRay # This module holds the Style class and its subclasses. - # + # # See Plugin. module Styles extend PluginHost plugin_path File.dirname(__FILE__), 'styles' - + + # Base class for styles. + # + # Styles are used by Encoders::HTML to colorize tokens. class Style extend Plugin plugin_host Styles - - DEFAULT_OPTIONS = { } - + + DEFAULT_OPTIONS = { } # :nodoc: + end - + end - + end |