UNPKG

@atlaskit/adf-schema

Version:

Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs

14 lines 267 B
var name = 'unknownBlock'; export default { group: 'block', content: 'inline+', marks: '_', toDOM: function toDOM() { return ['div', { 'data-node-type': name }, 0]; }, parseDOM: [{ tag: "div[data-node-type=\"".concat(name, "\"]") }] };