rubychan/coderay

View on GitHub
lib/coderay/encoders/null.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
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