template

Type: String

Default: <div></div>

With this setting, you can change the layer block template, for example:

ArticleEditor('#entry', {
    css: '/your-article-dist-path/',
    layer: {
        template: '<div class="my-layer"></div>'
    }
});

Or like this:

ArticleEditor('#entry', {
    css: '/your-article-dist-path/',
    layer: {
        template: '<article></article>'
    }
});

disable

Type: Boolean

Default: true

You can completely disable layer adding, just set false.

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