summaryrefslogtreecommitdiff
path: root/lib/coderay/scanners/_map.rb
blob: c9ac75f5a8a2e4346780004dccec386c26d6a1c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module CodeRay
module Scanners

  map :cpp => :c,
    :plain => :plaintext,
    :pascal => :delphi,
    :irb => :ruby,
    :xhtml => :nitro_xhtml,
    :javascript => :java_script,
    :js => :java_script,
    :nitro => :nitro_xhtml,
    :yml => :yaml

  default :plain

end
end