summaryrefslogtreecommitdiff
path: root/lib/coderay/token_kinds.rb
Commit message (Collapse)AuthorAgeFilesLines
* tweak Debug scanners again, introduce :unknown token kindKornelius Kalnbach2013-07-211-1/+2
|
* check token kinds in Lint encodersKornelius Kalnbach2013-07-211-4/+1
|
* whitespaceKornelius Kalnbach2013-06-221-3/+3
|
* Merge branch 'master' into lua-scannerKornelius Kalnbach2013-06-221-75/+73
|\ | | | | | | | | | | Conflicts: lib/coderay/styles/alpha.rb lib/coderay/token_kinds.rb
| * cleanup TODOs, FIXMEsKornelius Kalnbach2013-06-161-1/+1
| |
| * tweak Terminal encoder, cleanup token kindsKornelius Kalnbach2013-06-131-69/+67
| |
* | Merge branch 'master' into lua-scannerKornelius Kalnbach2013-06-121-5/+3
|\ \ | |/ | | | | | | Conflicts: lib/coderay/token_kinds.rb
| * tweak Taskpaper scanner, cleanup doc_string kindKornelius Kalnbach2013-06-121-6/+2
| |
| * Merge remote-tracking branch 'shimomura1004/taskpaper' into taskpaper-scannerKornelius Kalnbach2013-06-121-0/+3
| |\
| | * TaskPaper scanner for CodeRaySHIMOMURA Sho2012-10-221-0/+3
| | |
| * | Merge remote-tracking branch 'noprompt/master' into css-token-kindsKornelius Kalnbach2013-06-111-0/+1
| |\ \ | | | | | | | | | | | | | | | | Conflicts: etc/todo/scanners/css.rb
| | * | add "id" token kindJoel Holdbrooks2012-07-031-0/+1
| | |/
| * | unfreeze TokenKinds hash, allow changesKornelius Kalnbach2013-06-091-2/+0
| |/
* | :map token kindNathan Youngman2012-10-271-10/+10
| | | | | | | | Use :map instead of :table. It's more generic, and won't be confused with the :table rendering style.
* | Lua scanner for CodeRay. Meta-commit.Quintus2012-04-221-0/+1
|/ | | | | This commit is a super-commit containing all the subcommits for implementing the Lua scanner.
* add :debug token to TokenKindsKornelius Kalnbach2011-08-211-0/+1
|
* pretty (longer) token class names; closes #347Kornelius Kalnbach2011-08-191-67/+65
|
* cleanupsmurphy2011-06-111-3/+3
|
* renamed pre_* token kinds to predefined_*murphy2011-04-171-2/+2
|
* Finally, token_kinds.rb defines a TokenKinds constant :Pmurphy2011-03-011-86/+88
|
* More speedups for HTML encoding (numbering, CSS styles, Ruby 1.9).murphy2010-06-271-6/+6
|
* Added :eyecatcher token type (for inline diff highlighting) and improvedmurphy2010-06-011-1/+3
| | | | | some nested styles.
* Direct Streaming! See #142 and Changes.textile.murphy2010-05-011-1/+0
|
* Python scanner highlights docstrings as comments (see #190).murphy2010-04-021-0/+1
|
* Java Scanner: Package names are recognized, along with some code cleanup. ↵murphy2010-04-021-0/+1
| | | | Closes #210.
* Don't raise error for unknown token kinds unless in @$CODERAY_DEBUG@ mode.murphy2010-03-311-1/+5
|
* Renamed token_classes to token_kinds (closes #122).murphy2010-03-301-0/+82
* *RENAMED* from ClassOfKind. The term "token class" is no longer used in CodeRay. Instead, tokens have _kinds_. * *RENAMED* TokenKindFilter to TokenClassFilter. * *ADDED* documentation on encoders affected by the term change. * *REMOVED* token kinds :attribute_name_fat, :attribute_value_fat, :operator_fat, :tag_fat, and :xml_text. * *ADDED* token kind :filename.