We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9670f1f commit c8c5557Copy full SHA for c8c5557
src/library/chunkBuilder.js
@@ -41,7 +41,11 @@ const getEmptyChunk = (): Object => {
41
text: '',
42
inlines: [],
43
entities: [],
44
- blocks: [],
+ blocks: [{
45
+ type: 'unstyled',
46
+ depth: 0,
47
+ data: new Map({}),
48
+ }],
49
};
50
51
src/library/getEntityId.js
@@ -18,7 +18,6 @@ const getEntityId = (node) => {
18
} else {
19
entityConfig.url = node.href;
20
entityConfig.title = node.innerHTML;
21
- entityConfig.className = node.className;
22
entityConfig.target = node.target;
23
entityId = Entity.create(
24
'LINK',
0 commit comments