MarkdownParser class
Static helpers for extracting structured data from Markdown text.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
extractApiReferences(
String text) → List< String> -
Extract Dart API references from
text. -
extractBreakingChanges(
String markdown) → List< String> -
Extract breaking-change descriptions from
markdown. -
extractCodeBlocks(
String markdown) → List< String> -
Extract the contents of all fenced code blocks from
markdown. -
parseSections(
String markdown) → List< MarkdownSection> -
Parse
markdowninto a tree of MarkdownSections organised by heading level.