To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 81 / 81cd3726ba1b626ac8fe2e786c213679ee3b4319.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (502 Bytes)

1
module CodeRay
2
module Scanners
3
  
4
  map \
5
    :'c++'       => :cpp,
6
    :cplusplus   => :cpp,
7
    :ecmascript  => :java_script,
8
    :ecma_script => :java_script,
9
    :rhtml       => :erb,
10
    :eruby       => :erb,
11
    :irb         => :ruby,
12
    :javascript  => :java_script,
13
    :js          => :java_script,
14
    :pascal      => :delphi,
15
    :patch       => :diff,
16
    :plain       => :text,
17
    :plaintext   => :text,
18
    :xhtml       => :html,
19
    :yml         => :yaml
20
  
21
  default :text
22
  
23
end
24
end