[Source]
# File lib/coderay/scanners/plaintext.rb, line 10 10: def scan_tokens tokens, options 11: text = (scan_until(/\z/) || '') 12: tokens << [text, :plain] 13: end
[Validate]