parseInline method

List<Node> parseInline(
  1. String text
)

Parses the given inline Markdown text to a series of AST nodes.

Implementation

List<Node> parseInline(String text) => getInlineParser(text).parse();