mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-22 11:52:30 +00:00
14 lines
283 B
JavaScript
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,
|
|
];
|
|
}
|