OrgParser class

The OrgMode parser.

final text = """
#+TITLE: document title
* TODO Headline
this is a sentence.
- unordered list item 1.
- unordered list item 2.
"""
Parser.parse(text).children[0].todoKeyword == 'TODO';

Constructors

OrgParser()

Properties

context ↔ JsContext
getter/setter pair
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
parse(String text) Future<OrgData?>
Parses text and returns OrgData.
parseSync(String text) OrgData?
Parses text and returns OrgData.
parseType<T>(String text) Future<T>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited