diff options
author | murphy <murphy@rubychan.de> | 2007-04-24 12:26:18 +0000 |
---|---|---|
committer | murphy <murphy@rubychan.de> | 2007-04-24 12:26:18 +0000 |
commit | 3ecc8116cc06289724f9a2ccf734e99d843abc79 (patch) | |
tree | f4f20fe32327d5127a2778b5cd19baea644c3fd8 /lib/coderay/encoders/text.rb | |
parent | 47ba0455640b4a6a0ae90961c176c9ea42afa2ea (diff) | |
download | coderay-3ecc8116cc06289724f9a2ccf734e99d843abc79.tar.gz |
Benchmark, comparison: replaced SilverCity with pygments
A bit of code and documentation cleanup
HTML encoder: fixed css class output for NO_HIGHLIGHT tokens when :info is set.
Fixed Text encoder.
Diffstat (limited to 'lib/coderay/encoders/text.rb')
-rw-r--r-- | lib/coderay/encoders/text.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/coderay/encoders/text.rb b/lib/coderay/encoders/text.rb index 7493280..14282ac 100644 --- a/lib/coderay/encoders/text.rb +++ b/lib/coderay/encoders/text.rb @@ -14,12 +14,12 @@ module Encoders protected def setup options - super + @out = '' @sep = options[:separator] end - def text_token text, kind - text + @sep + def token text, kind + @out << text + @sep if text.is_a? ::String end def finish options |