Mercurial > hg > soundsoftware-site
comparison vendor/plugins/coderay-0.9.2/lib/coderay/scanners/_map.rb @ 0:513646585e45
* Import Redmine trunk SVN rev 3859
author | Chris Cannam |
---|---|
date | Fri, 23 Jul 2010 15:52:44 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:513646585e45 |
---|---|
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 |