From e46b6cbe74db250d743e7f194bfc7514529a82cc Mon Sep 17 00:00:00 2001 From: murphy Date: Tue, 16 Sep 2008 22:07:44 +0000 Subject: New: *JavaScript Scanner* (closes #23). * It's quite good and fast, but still a beta. * I included Prototype and script.aculo.us as example code for testing. More changes: * Added two new token classes, :keyword and :key, along with CSS styles. ** Actually, we should use :keyword for most scanners that now use :reserved. * HTML Encoder: The CSS parser understands multiple selectors separated by commas. --- lib/coderay/helpers/file_type.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/coderay/helpers') diff --git a/lib/coderay/helpers/file_type.rb b/lib/coderay/helpers/file_type.rb index 75c691f..f7c5f7d 100644 --- a/lib/coderay/helpers/file_type.rb +++ b/lib/coderay/helpers/file_type.rb @@ -88,6 +88,7 @@ module FileType 'cpp' => :c, 'c' => :c, 'h' => :c, + 'js' => :java_script, 'xml' => :xml, 'htm' => :html, 'html' => :html, -- cgit v1.2.1