summaryrefslogtreecommitdiff
path: root/lib/coderay
diff options
context:
space:
mode:
Diffstat (limited to 'lib/coderay')
-rw-r--r--lib/coderay/style.rb17
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