diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2016-06-04 13:59:09 +0200 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2016-06-04 13:59:09 +0200 |
commit | 3e10d565f99025bdca003cc8fbd98d3260ae451a (patch) | |
tree | 85cd39a0101139a193b4d98ba8d0129a83884302 /lib/coderay/styles/style.rb | |
parent | 0b19ccfa96e1c7e4999e6e2619ae0b266b54402a (diff) | |
parent | 4c7bedc3bf2392444f62e90b7b8dc91d1a2effbb (diff) | |
download | coderay-3e10d565f99025bdca003cc8fbd98d3260ae451a.tar.gz |
Merge branch 'master' into possible-speedups
Diffstat (limited to 'lib/coderay/styles/style.rb')
-rw-r--r-- | lib/coderay/styles/style.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/coderay/styles/style.rb b/lib/coderay/styles/style.rb new file mode 100644 index 0000000..a335386 --- /dev/null +++ b/lib/coderay/styles/style.rb @@ -0,0 +1,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 |