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

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

  default :plain

end
end