module Gherkin module Formatter module Escaping # Escapes a pipes and backslashes: # # * | becomes \| # * \ becomes \\ # # This is used in the pretty formatter. def escape_cell(s) s.gsub(/\|/, "\\|").gsub(/\\(?!\|)/, "\\\\\\\\") end end end end