Documentation

Topbar

undoredo

Type: Boolean

Default: false

By default, the Undo & Redo buttons are turned off. To make them appear on the topbar, use this setting, like this:

ArticleEditor('#entry', {
    css: '/your-article-dist-path/',
    topbar: {
        undoredo: true
    }
});

shortcuts

Type: Boolean

Default: true

This setting allows to disable to show the keyboard shortcuts button on the topbar.

ArticleEditor('#entry', {
    css: '/your-article-dist-path/',
    topbar: {
        shortcuts: false
    }
});