UNPKG

@mdxeditor/editor

Version:

React component for rich text markdown editing

11 lines (10 loc) 233 B
import { $createQuoteNode } from "@lexical/rich-text"; const MdastBlockQuoteVisitor = { testNode: "blockquote", visitNode({ actions }) { actions.addAndStepInto($createQuoteNode()); } }; export { MdastBlockQuoteVisitor };