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 / vendor / gems / coderay-0.9.7 / lib / coderay / scanners / _map.rb @ 442:753f1380d6bc

History | View | Annotate | Download (413 Bytes)

1
module CodeRay
2
module Scanners
3

    
4
  map \
5
    :h => :c,
6
    :cplusplus => :cpp,
7
    :'c++' => :cpp,
8
    :ecma => :java_script,
9
    :ecmascript => :java_script,
10
    :ecma_script => :java_script,
11
    :irb => :ruby,
12
    :javascript => :java_script,
13
    :js => :java_script,
14
    :nitro => :nitro_xhtml,
15
    :pascal => :delphi,
16
    :plain => :plaintext,
17
    :xhtml => :html,
18
    :yml => :yaml
19

    
20
  default :plain
21

    
22
end
23
end