2007-08-16 00:20:18 +04:00
|
|
|
module CodeRay
|
|
|
|
|
|
|
|
# This module holds the Style class and its subclasses.
|
2011-10-08 17:34:30 +04:00
|
|
|
#
|
2007-08-16 00:20:18 +04:00
|
|
|
# See Plugin.
|
|
|
|
module Styles
|
|
|
|
extend PluginHost
|
|
|
|
plugin_path File.dirname(__FILE__), 'styles'
|
2011-10-08 17:34:30 +04:00
|
|
|
|
|
|
|
# Base class for styles.
|
|
|
|
#
|
|
|
|
# Styles are used by Encoders::HTML to colorize tokens.
|
2007-08-16 00:20:18 +04:00
|
|
|
class Style
|
|
|
|
extend Plugin
|
|
|
|
plugin_host Styles
|
2011-10-08 17:34:30 +04:00
|
|
|
|
|
|
|
DEFAULT_OPTIONS = { } # :nodoc:
|
|
|
|
|
2007-08-16 00:20:18 +04:00
|
|
|
end
|
2011-10-08 17:34:30 +04:00
|
|
|
|
2007-08-16 00:20:18 +04:00
|
|
|
end
|
2011-10-08 17:34:30 +04:00
|
|
|
|
2007-08-16 00:20:18 +04:00
|
|
|
end
|