@textlint/text-to-ast
Version:
Parse plain text to AST with location info.
11 lines • 330 B
JavaScript
// LICENSE : MIT
;
import { ASTNodeTypes } from "@textlint/ast-node-types";
export const Syntax = {
Document: ASTNodeTypes.Document, // must
Paragraph: ASTNodeTypes.Paragraph,
// inline
Str: ASTNodeTypes.Str, // must
Break: ASTNodeTypes.Break // must
};
//# sourceMappingURL=plaintext-syntax.js.map