-
Notifications
You must be signed in to change notification settings - Fork 3
/
data.ts
123 lines (120 loc) · 3.58 KB
/
data.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
import { OutputData } from '@editorjs/editorjs'
interface IDataObj extends OutputData {
blocks: Array<{
type: string
data: {
[key: string]: any
}
}>
}
const data: IDataObj = {
time: new Date().getTime(),
blocks: [
{
type: 'header',
data: {
text: 'Editor.js',
level: 2,
},
},
{
type: 'paragraph',
data: {
text:
'Hey. Meet the new Editor. On this page you can see it in action — try to edit this text.',
},
},
{
type: 'header',
data: {
text: 'Key features',
level: 3,
},
},
{
type: 'list',
data: {
style: 'unordered',
items: [
'It is a block-styled editor',
'It returns clean data output in JSON',
'Designed to be extendable and pluggable with a simple API',
],
},
},
{
type: 'header',
data: {
text: 'What does it mean «block-styled editor»',
level: 3,
},
},
{
type: 'paragraph',
data: {
text:
'Workspace in classic editors is made of a single contenteditable element, used to create different HTML markups. Editor.js <mark class="cdx-marker">workspace consists of separate Blocks: paragraphs, headings, images, lists, quotes, etc</mark>. Each of them is an independent contenteditable element (or more complex structure) provided by Plugin and united by Editor\'s Core.',
},
},
{
type: 'paragraph',
data: {
text:
'There are dozens of <a href="https://github.com/editor-js">ready-to-use Blocks</a> and the <a href="https://editorjs.io/creating-a-block-tool">simple API</a> for creation any Block you need. For example, you can implement Blocks for Tweets, Instagram posts, surveys and polls, CTA-buttons and even games.',
},
},
{
type: 'header',
data: {
text: 'What does it mean clean data output',
level: 3,
},
},
{
type: 'paragraph',
data: {
text:
'Classic WYSIWYG-editors produce raw HTML-markup with both content data and content appearance. On the contrary, Editor.js outputs JSON object with data of each Block. You can see an example below',
},
},
{
type: 'paragraph',
data: {
text:
'Given data can be used as you want: render with HTML for <code class="inline-code">Web clients</code>, render natively for <code class="inline-code">mobile apps</code>, create markup for <code class="inline-code">Facebook Instant Articles</code> or <code class="inline-code">Google AMP</code>, generate an <code class="inline-code">audio version</code> and so on.',
},
},
{
type: 'paragraph',
data: {
text:
'Clean data is useful to sanitize, validate and process on the backend.',
},
},
{
type: 'delimiter',
data: {},
},
{
type: 'paragraph',
data: {
text:
"We have been working on this project more than three years. Several large media projects help us to test and debug the Editor, to make it's core more stable. At the same time we significantly improved the API. Now, it can be used to create any plugin for any task. Hope you enjoy. 😏",
},
},
{
type: 'image',
data: {
file: {
url: 'https://capella.pics/6d8f1a84-9544-4afa-b806-5167d45baf7c.jpg',
},
caption: '',
withBorder: true,
stretched: false,
withBackground: false,
},
},
],
version: '2.15.0',
}
export default data