2007-08-16 00:20:18 +04:00
|
|
|
module CodeRay
|
|
|
|
module Encoders
|
2011-10-08 17:34:30 +04:00
|
|
|
|
2007-08-16 00:20:18 +04:00
|
|
|
# = Null Encoder
|
|
|
|
#
|
|
|
|
# Does nothing and returns an empty string.
|
|
|
|
class Null < Encoder
|
2011-10-08 17:34:30 +04:00
|
|
|
|
2007-08-16 00:20:18 +04:00
|
|
|
register_for :null
|
2011-10-08 17:34:30 +04:00
|
|
|
|
|
|
|
def text_token text, kind
|
2007-08-16 00:20:18 +04:00
|
|
|
# do nothing
|
|
|
|
end
|
2011-10-08 17:34:30 +04:00
|
|
|
|
2007-08-16 00:20:18 +04:00
|
|
|
end
|
2011-10-08 17:34:30 +04:00
|
|
|
|
2007-08-16 00:20:18 +04:00
|
|
|
end
|
|
|
|
end
|