Concats the tokens into a single string, resulting in the original code string if no tokens were removed.

Alias: plain, plaintext

Options

:separator

A separator string to join the tokens.

Default: empty String

Methods
Constants
FILE_EXTENSION = 'txt'
DEFAULT_OPTIONS = { :separator => nil
Public Instance methods
text_token(text, kind)
# File lib/coderay/encoders/text.rb, line 25
    def text_token text, kind
      super
      
      if @first
        @first = false
      else
        @out << @sep
      end if @sep
    end