class Asciidoctor::Table::ParserContext

def skip_matched_delimiter(match, escaped = false)

returns the String after the match

(either because it was escaped or in a quoted context)
Public: Skip beyond the matched delimiter because it was a false positive
def skip_matched_delimiter(match, escaped = false)
  @buffer = %(#{@buffer}#{escaped ? match.pre_match.chop : match.pre_match}#{@delimiter})
  match.post_match
end