@umbraco-cms/backoffice
    Preparing search index...

    Interface MarkViewProps

    interface MarkViewProps {
        editor: Editor;
        extension: Mark;
        HTMLAttributes: Record<string, any>;
        inline: boolean;
        mark: Mark;
        updateAttributes: (attrs: Record<string, any>) => void;
        view: EditorView;
    }

    Hierarchy (View Summary)

    Index

    Properties

    editor: Editor

    The editor instance.

    extension: Mark

    The extension that is responsible for the mark.

    HTMLAttributes: Record<string, any>

    The HTML attributes that should be added to the mark's DOM element.

    inline: boolean

    indicates whether the mark's content is inline

    mark: Mark

    The node that is being rendered.

    updateAttributes: (attrs: Record<string, any>) => void
    view: EditorView

    The editor's view.