Parses the given lines of Markdown to a series of AST nodes.
lines
List<Node> parseLines(List<String> lines, {int offset = 0}) => parseLineList(lines.map(Line.new).toList(), offset: offset);