UNPKG

@atlaskit/adf-schema

Version:

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

16 lines (15 loc) 256 B
/** * @name blockquote_node */ export const blockquote = { content: '(paragraph | unsupportedBlock)+', group: 'block', defining: true, selectable: false, parseDOM: [{ tag: 'blockquote' }], toDOM() { return ['blockquote', 0]; } };