Mercurial > hg > soundsoftware-site
comparison vendor/gems/coderay-0.9.7/lib/coderay/scanners/_map.rb @ 523:0b6c82dead28 luisf
Merge from branch "cannam"
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Mon, 25 Jul 2011 14:23:37 +0100 |
parents | 0579821a129a |
children |
comparison
equal
deleted
inserted
replaced
318:f7c525dc7585 | 523:0b6c82dead28 |
---|---|
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 |