interface MetaTinyMcePlugin {
    config?: RawEditorOptions;
    toolbar?: { alias: string; icon?: string; label: string }[];
}

Properties

Properties

config?: RawEditorOptions

Sets the default configuration for the TinyMCE editor. This configuration will be used when the editor is initialized.

TinyMCE Configuration for more information.

[ { "plugins": "wordcount", "statusbar": true } ]

toolbar?: { alias: string; icon?: string; label: string }[]

If the plugin adds toolbar buttons, this property can be used to configure the buttons. This configuration will be used on the Rich Text Editor configuration page.

Type declaration

  • alias: string

    The alias of the toolbar button that will be configured in the TinyMCE editor.

    TinyMCE Toolbar for more information.

  • Optionalicon?: string

    The icon shown on the Rich Text Editor configuration page. The icon has to be a part of TinyMCE's icon set.

    TinyMCE Icon Set for available default icons.

  • label: string

    The label of the option shown on the Rich Text Editor configuration page.

MMNEPVFCICPMFPCPTTAAATR