UNPKG

@blocknote/react

Version:

A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.

29 lines (25 loc) 830 B
import { BlockNoteSchema, createBlockSpecFromStronglyTypedTiptapNode, createStronglyTypedTiptapNode, defaultBlockSpecs, defaultStyleSpecs, } from "@blocknote/core"; // this is quite convoluted. we'll clean this up when we make // it easier to extend / customize the default blocks const paragraph = createBlockSpecFromStronglyTypedTiptapNode( createStronglyTypedTiptapNode<"paragraph", "inline*">( defaultBlockSpecs.paragraph.implementation.node.config as any, ), // disable default props on paragraph (such as textalignment and colors) {}, ); // remove textColor, backgroundColor from styleSpecs const { textColor, backgroundColor, ...styleSpecs } = defaultStyleSpecs; // the schema to use for comments export const schema = BlockNoteSchema.create({ blockSpecs: { paragraph, }, styleSpecs, });