Mercurial > hg > soundsoftware-site
view vendor/gems/coderay-0.9.7/lib/coderay/scanners/.svn/text-base/plaintext.rb.svn-base @ 800:95b78e19e586 feature_14
Addresses (closes?) Feature #336
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Mon, 21 Nov 2011 17:40:25 +0000 |
parents | 0579821a129a |
children |
line wrap: on
line source
module CodeRay module Scanners class Plaintext < Scanner register_for :plaintext, :plain title 'Plain text' include Streamable KINDS_NOT_LOC = [:plain] def scan_tokens tokens, options text = (scan_until(/\z/) || '') tokens << [text, :plain] end end end end