Rouge::Formatter
A formatter which renders nothing.
# File lib/rouge/formatters/null.rb, line 8 def initialize(*) end
# File lib/rouge/formatters/null.rb, line 11 def stream(tokens, &b) tokens.each do |tok, val| yield "#{tok} #{val.inspect}\n" end end