Documentation

Overview

Settings passes as an object when the editor starts. Here is an example of calling the editor with the settings:

ArticleEditor('#entry', {
    css: '/your-article-dist-path/',
    source: false,
    editor: {
        focus: true
    }
});

The first setting source turns off the source code view, and the second indicates that the focus should be placed on the editor when it starts up.

Here is a live example of launching the editor with settings.