diff options
Diffstat (limited to 'lib/coderay/scanners/_map.rb')
-rw-r--r-- | lib/coderay/scanners/_map.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/coderay/scanners/_map.rb b/lib/coderay/scanners/_map.rb new file mode 100644 index 0000000..811546b --- /dev/null +++ b/lib/coderay/scanners/_map.rb @@ -0,0 +1,10 @@ +module CodeRay
+ module Scanners
+
+ map :cpp => :c,
+ :plain => :plaintext,
+ :pascal => :delphi,
+ :irb => :ruby
+
+ end
+end
|