Skip to content

Instantly share code, notes, and snippets.

@stovv
Created March 22, 2020 00:57
Show Gist options
  • Select an option

  • Save stovv/4a4ea5f8dfb4020db3e385eb769eedf2 to your computer and use it in GitHub Desktop.

Select an option

Save stovv/4a4ea5f8dfb4020db3e385eb769eedf2 to your computer and use it in GitHub Desktop.
Tools for EditorJS
import Header from '@editorjs/header';
import Paragraph from '@editorjs/paragraph';
import List from '@editorjs/list';
export default {
header: {
class: Header,
config: {
placeholder: 'Заголовок',
levels: [2, 3, 4],
defaultLevel: 2
},
inlineToolbar: true
},
paragraph: {
class: Paragraph,
inlineToolbar: true
},
list: {
class: List,
inlineToolbar: true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment