UNPKG

@atlaskit/adf-schema

Version:

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

16 lines 339 B
export const bulletListSelector = '.ak-ul'; export const bulletList = { group: 'block', content: 'listItem+', selectable: false, parseDOM: [{ tag: 'ul' }], marks: 'unsupportedMark unsupportedNodeAttribute', toDOM() { const attrs = { class: bulletListSelector.substr(1) }; return ['ul', attrs, 0]; } };