mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-04 23:13:41 +08:00
15 lines
283 B
JavaScript
15 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,
|
|
];
|
|
}
|