parseLines method

List<Node> parseLines(
  1. List<String> lines, {
  2. int offset = 0,
})

Parses the given lines of Markdown to a series of AST nodes.

Implementation

List<Node> parseLines(List<String> lines, {int offset = 0}) =>
    parseLineList(lines.map(Line.new).toList(), offset: offset);