Expand description
Markdown source to AST. The entry points are the free parse function
(maximal default dialect) and the SyntaxOptions::parse /
SyntaxOptions::parse_strict methods. Parsing is tolerant: problems are
collected as Diagnostics rather than aborting.
Structs§
- Parse
Output - The result of a tolerant parse: the document plus any diagnostics gathered along the way (empty on a clean parse).
Enums§
- Parse
Strict Error - The error returned by
SyntaxOptions::parse_strict.
Functions§
- parse
- Parse
inputunder the maximal default dialect (SyntaxOptions::default). Infallible and tolerant; sugar forSyntaxOptions::default().parse(input).