Mercurial > hg > soundsoftware-site
view vendor/gems/coderay-0.9.7/lib/coderay/scanners/plaintext.rb @ 814:03d855015db8 live
Fix SQL error in project model
author | Chris Cannam |
---|---|
date | Wed, 23 Nov 2011 15:43:50 +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