class Rouge::Formatters::Terminal256::EscapeSequence

def stream_value(val, &b)

def stream_value(val, &b)
  yield style_string
  yield val.gsub("\e", "\\e")
           .gsub("\n", "#{reset_string}\n#{style_string}")
  yield reset_string
end