@textlint/text-to-ast
Version:
Parse plain text to AST with location info.
13 lines • 486 B
JavaScript
// LICENSE : MIT
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Syntax = void 0;
const ast_node_types_1 = require("@textlint/ast-node-types");
exports.Syntax = {
Document: ast_node_types_1.ASTNodeTypes.Document, // must
Paragraph: ast_node_types_1.ASTNodeTypes.Paragraph,
// inline
Str: ast_node_types_1.ASTNodeTypes.Str, // must
Break: ast_node_types_1.ASTNodeTypes.Break // must
};
//# sourceMappingURL=plaintext-syntax.js.map