summaryrefslogtreecommitdiff
path: root/lib/coderay/styles/style.rb
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2016-02-13 18:14:44 +0100
committerKornelius Kalnbach <murphy@rubychan.de>2016-02-13 18:14:44 +0100
commitae94f2f266389a7cf50618a701bc080dea007bf5 (patch)
tree39c9bd17791e89d43c74c7d7f772c0de0f98f0b6 /lib/coderay/styles/style.rb
parent3c92a655c48f7f94c5076712f1950378968d6eb8 (diff)
parent50ddfcc14d435b8f667249b9e90603f113b79282 (diff)
downloadcoderay-ae94f2f266389a7cf50618a701bc080dea007bf5.tar.gz
Merge branch 'master' into dsl
Diffstat (limited to 'lib/coderay/styles/style.rb')
-rw-r--r--lib/coderay/styles/style.rb18
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