Created
March 22, 2020 01:02
-
-
Save stovv/620a24dccfbd18bf77ef8b4f9ca27b10 to your computer and use it in GitHub Desktop.
Initial Data 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
| export default { | |
| time: 1556098174501, | |
| blocks: [ | |
| { | |
| type: "header", | |
| data: { | |
| text: "Заголовок", | |
| level: 2 | |
| } | |
| }, | |
| { | |
| type: "paragraph", | |
| data: { | |
| text: | |
| "Очень интересный текст статьи...." | |
| } | |
| }, | |
| { | |
| type: "header", | |
| data: { | |
| text: "Заголовок списка", | |
| level: 3 | |
| } | |
| }, | |
| { | |
| type: "list", | |
| data: { | |
| style: "unordered", | |
| items: [ | |
| "Первое", | |
| "Второе", | |
| 'И главное, <code class="inline-code">третье</code>' | |
| ] | |
| } | |
| }, | |
| ], | |
| version: "2.16.1" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment