Mercurial > hg > soundsoftware-site
comparison vendor/gems/coderay-1.0.0/lib/coderay/scanners/_map.rb @ 909:cbb26bc654de redmine-1.3
Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author | Chris Cannam |
---|---|
date | Fri, 24 Feb 2012 19:09:32 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
908:c6c2cbd0afee | 909:cbb26bc654de |
---|---|
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 |