blob: 900764670580592638519813ad403355a0e092d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
module CodeRay
module Scanners
class Plaintext < Scanner
register_for :plaintext, :plain
def scan_tokens tokens, options
tokens << [scan_until(/\z/), :plain]
end
end
end
end
|