blob: 24ada0a16bec502722943a9f56f8dd52b4b20695 (
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,
:html => :page,
:plain => :text,
:plaintext => :text,
:remove_comments => :comment_filter,
:stats => :statistic,
:term => :terminal,
:tty => :terminal
# No default because Tokens#nonsense should raise NoMethodError.
end
end
|