blob: 4cca1963f779ff4338011574871478fd601f9c4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
module CodeRay
module Encoders
map \
:loc => :lines_of_code,
:plain => :text,
:plaintext => :text,
:remove_comments => :comment_filter,
:stats => :statistic,
:term => :terminal,
:tty => :terminal,
:yml => :yaml
# No default because Tokens#nonsense should raise NoMethodError.
end
end
|