summaryrefslogtreecommitdiff
path: root/lib/coderay/token_classes.rb
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2008-09-30 16:42:53 +0000
committermurphy <murphy@rubychan.de>2008-09-30 16:42:53 +0000
commita4bd413ca4e835fd3d1fdc24eebce67cd54231ca (patch)
tree518d0448cec8093f2f2be22a483535fc642de975 /lib/coderay/token_classes.rb
parenta1465d8bdf5637893c079d3a266b46b04e40d364 (diff)
downloadcoderay-a4bd413ca4e835fd3d1fdc24eebce67cd54231ca.tar.gz
New: *Simple Diff Scanner* (closes #22).
* Highlights unified diffs, especially like the ones svn diff outputs. * Changes to make highlighting of whole lines were necessary. * I added two example files. More changes: * Added token classes :head, :delete, :insert, and :change along with styles. * Added two new special token types: :begin_line and :end_line. They mark token groups that explicitly span whole lines and should be highlighted as such. * The HTML encoder converts these new tokens to DIVs. May need more work. * The Debug Encoder uses square brackets for line tokens. * Some cleanups.
Diffstat (limited to 'lib/coderay/token_classes.rb')
-rwxr-xr-xlib/coderay/token_classes.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/coderay/token_classes.rb b/lib/coderay/token_classes.rb
index 77d48aa..d85d1af 100755
--- a/lib/coderay/token_classes.rb
+++ b/lib/coderay/token_classes.rb
@@ -61,6 +61,11 @@ module CodeRay
:variable => 'v',
:value => 'vl',
:xml_text => 'xt',
+
+ :insert => 'ins',
+ :delete => 'del',
+ :change => 'chg',
+ :head => 'head',
:ident => :NO_HIGHLIGHT, # 'id'
#:operator => 'op',