0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-22 11:52:30 +00:00
BookStackApp_BookStack/resources/js/wysiwyg/nodes/index.js

14 lines
283 B
JavaScript

import {HeadingNode, QuoteNode} from '@lexical/rich-text';
import {Callout} from './callout';
/**
* Load the nodes for lexical.
* @returns {LexicalNode[]}
*/
export function getNodesForPageEditor() {
return [
Callout,
HeadingNode,
QuoteNode,
];
}