diff options
author | murphy <murphy@rubychan.de> | 2010-06-01 21:33:24 +0000 |
---|---|---|
committer | murphy <murphy@rubychan.de> | 2010-06-01 21:33:24 +0000 |
commit | 6f87649e90c55efac703d9c5b7838fceada89b9e (patch) | |
tree | a01491ec327c86c016cb8169be13704b452a80ce /lib/coderay/token_kinds.rb | |
parent | 5544505fc7b7cace58ff1b4bedb273eeeda4a514 (diff) | |
download | coderay-6f87649e90c55efac703d9c5b7838fceada89b9e.tar.gz |
Added :eyecatcher token type (for inline diff highlighting) and improved
some nested styles.
Diffstat (limited to 'lib/coderay/token_kinds.rb')
-rwxr-xr-x | lib/coderay/token_kinds.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/coderay/token_kinds.rb b/lib/coderay/token_kinds.rb index 9904d50..e9e60cf 100755 --- a/lib/coderay/token_kinds.rb +++ b/lib/coderay/token_kinds.rb @@ -71,7 +71,9 @@ module CodeRay :delete => 'del', :change => 'chg', :head => 'head', - + + :eyecatcher => 'eye', + :ident => :NO_HIGHLIGHT, # 'id' #:operator => 'op', :operator => :NO_HIGHLIGHT, # 'op' |