rhino-editor
Version:
A custom element wrapped rich text editor
10 lines (9 loc) • 370 B
TypeScript
import { Extension } from "@tiptap/core";
import { type MarkType } from "@tiptap/pm/model";
export interface InlineCodePluginOptions {
markType?: null | undefined | MarkType;
}
/**
* Uses https://github.com/curvenote/editor/tree/main/packages/prosemirror-codemark to make inline code much nicer to use.
*/
export declare const CodemarkPlugin: Extension<any, any>;