import {CalloutNode} from './callout';
import {ElementNode, KlassConstructor, LexicalNode, LexicalNodeReplacement, ParagraphNode} from "lexical";
import {CustomParagraphNode} from "./custom-paragraph";
+import {LinkNode} from "@lexical/link";
/**
* Load the nodes for lexical.
with: (node: ParagraphNode) => {
return new CustomParagraphNode();
}
- }
+ },
+ LinkNode,
];
}