class Asciidoctor::Table::ParserContext

def starts_with_delimiter?(line)

returns true if the line starts with the delimiter, false otherwise

used by this table.
Public: Checks whether the line provided starts with the cell delimiter
def starts_with_delimiter?(line)
  line.start_with? @delimiter
end