blob: f6e4452d046a27d6b35068d4ebea327a4edc1b70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
module CodeRay
	module Scanners
		
		map :cpp => :c,
			:plain => :plaintext,
			:pascal => :delphi,
			:irb => :ruby,
			:xml => :html,
			:xhtml => :nitro_html
		default :plain
		
	end
end
  |