Skip to content

Lua scanner #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 14 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add CSS styles for table highlighting.
  • Loading branch information
Quintus committed Apr 22, 2012
commit 800431a00c0fe129b163859ab5c62d651d4cc3ad
3 changes: 3 additions & 0 deletions lib/coderay/styles/alpha.rb
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ class Alpha < Style
.symbol .content { color:#A60 }
.symbol .delimiter { color:#630 }
.symbol { color:#A60 }
.table .content { color:#808 }
.table .delimiter { color:#40A}
.table { background-color:hsla(200,100%,50%,0.06); }
.tag { color:#070 }
.type { color:#339; font-weight:bold }
.value { color: #088; }
Expand Down
1 change: 1 addition & 0 deletions lib/coderay/token_kinds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ module CodeRay
:shell => 'shell',
:string => 'string',
:symbol => 'symbol',
:table => 'table',
:tag => 'tag',
:type => 'type',
:value => 'value',
Expand Down