We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b1a49f commit d0d1b12Copy full SHA for d0d1b12
lib/coderay/styles/alpha.rb
@@ -1,6 +1,6 @@
1
module CodeRay
2
module Styles
3
-
+
4
# A colorful theme using CSS 3 colors (with alpha channel).
5
class Alpha < Style
6
lib/coderay/token_kinds.rb
@@ -1,14 +1,14 @@
# 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
7
end
8
9
# speedup
10
TokenKinds.compare_by_identity if TokenKinds.respond_to? :compare_by_identity
11
12
TokenKinds.update( # :nodoc:
13
:debug => 'debug', # highlight for debugging (white on blue background)
14
0 commit comments