-
Notifications
You must be signed in to change notification settings - Fork 0
/
text.js
66 lines (66 loc) · 2.25 KB
/
text.js
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
// This is the RawDraftContentState representation of Draft JS content state.
// It is obtained by calling convertToRaw(editorState.getCurrentContent()).
// See: https://draftjs.org/docs/api-reference-data-conversion.html
export default {
"entityMap": {
"0": {
"type": "LINK",
"mutability": "MUTABLE",
"data": {
"url": "https://vizor.io/"
}
},
"1": {
"type": "LINK",
"mutability": "MUTABLE",
"data": {
"url": "https://beta.vizor.io/"
}
},
"2": {
"type": "SEPARATOR",
"mutability": "IMMUTABLE",
"data": {}
}
},
"blocks": [
{
"data": {},
"depth": 0,
"entityRanges": [],
"inlineStyleRanges": [],
"key": "block1",
"text": "Oil on canvas | 1913",
"type": "unstyled"
},
{
"data": {},
"depth": 0,
"entityRanges": [
{
"offset": 16,
"length": 12,
"key": 0
},
{
"offset": 52,
"length": 14,
"key": 1
}
],
"inlineStyleRanges": [],
"key": "block3",
"text": "In this picture Hugo Simberg has painted his father Niclas Simberg and his son Tom on an evening stroll in Niemenlautta, the family’s summer residence near Viipuri. Old Man and Child was the last in a series of large-format paintings with human figures that Simberg painted in the course of more than ten years. Simberg’s depictions of children and old people have an exceptionally subtle and sympathetic quality.",
"type": "unstyled"
},
{
"data": {},
"depth": 0,
"entityRanges": [],
"inlineStyleRanges": [],
"key": "block4",
"text": "Simberg took particular care in finishing this painting by handcrafting the wooden frame for it. The painting was the single most important acquisition by Ateneum in 2015.",
"type": "unstyled"
}
]
}