@witchcraft/editor
    Preparing search index...
    • Unline tiptap's useEditor, this does not auto-mount the editor. Instead the returned recreate function must be called manually. This was built with the use of useContentEditor in mind.

      Parameters

      • options: Partial<EditorOptions> = {}

      Returns {
          editor: ShallowRef<Editor | undefined, Editor | undefined>;
          recreate: (
              modifyOptions?: (
                  options: Partial<EditorOptions>,
              ) => Partial<EditorOptions>,
          ) => void;
      }