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