File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/coderay-1.1.3/lib/coderay/encoders/

Viewing File: null.rb

module CodeRay
module Encoders
  
  # = Null Encoder
  #
  # Does nothing and returns an empty string.
  class Null < Encoder
    
    register_for :null
    
    def text_token text, kind
      # do nothing
    end
    
  end
  
end
end