jc-marked
Version:
Markdown AST (Abstract syntax tree) parser based on finite-state machine (FSM).
17 lines (16 loc) • 373 B
TypeScript
declare class TextLoader {
private _text;
private _currentState;
private _nextState;
private _index;
private _nodes;
private _recognizedText;
constructor(text?: string);
run(): void;
private _handelText;
private _runActions;
private _countNewState;
private _enterState;
private _patternMatching;
}
export { TextLoader };