class Gherkin::RbLexer::Fr

def multiline_strip(text)

def multiline_strip(text)
  crlf_count = text.scan(CRLF_RE).size
  lf_count = text.scan(LF_RE).size
  eol = crlf_count > lf_count ? CRLF : LF
  text.split(/\r?\n/).map{|s| s.strip}.join(eol).strip
end