Created
March 22, 2020 00:57
-
-
Save stovv/4a4ea5f8dfb4020db3e385eb769eedf2 to your computer and use it in GitHub Desktop.
Tools for EditorJS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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