diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2013-06-22 23:53:32 +0200 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2013-06-22 23:53:32 +0200 |
commit | d0d1b129f09dbae8fc25c093c09f72c6396b122a (patch) | |
tree | b343778cbbbd32428977a01f19633f51b2a86ef4 | |
parent | 5b1a49fdd3bef559991242a4ad7d3d1ed9cb48c8 (diff) | |
download | coderay-d0d1b129f09dbae8fc25c093c09f72c6396b122a.tar.gz |
whitespace
-rw-r--r-- | lib/coderay/styles/alpha.rb | 2 | ||||
-rwxr-xr-x | lib/coderay/token_kinds.rb | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/coderay/styles/alpha.rb b/lib/coderay/styles/alpha.rb index c05ffd5..c231423 100644 --- a/lib/coderay/styles/alpha.rb +++ b/lib/coderay/styles/alpha.rb @@ -1,6 +1,6 @@ module CodeRay module Styles - + # A colorful theme using CSS 3 colors (with alpha channel). class Alpha < Style diff --git a/lib/coderay/token_kinds.rb b/lib/coderay/token_kinds.rb index f1696df..9137a49 100755 --- a/lib/coderay/token_kinds.rb +++ b/lib/coderay/token_kinds.rb @@ -1,14 +1,14 @@ module CodeRay - + # A Hash of all known token kinds and their associated CSS classes. TokenKinds = Hash.new do |h, k| warn 'Undefined Token kind: %p' % [k] if $CODERAY_DEBUG false end - + # speedup TokenKinds.compare_by_identity if TokenKinds.respond_to? :compare_by_identity - + TokenKinds.update( # :nodoc: :debug => 'debug', # highlight for debugging (white on blue background) |