blob: 0aebf3566dcb96487ae88b3112ff6f9a3af91f85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|