UNPKG

@atlaskit/adf-schema

Version:

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

13 lines 341 B
import { bulletList as bulletListFactory } from '../../next-schema/generated/nodeTypes'; export var bulletListSelector = '.ak-ul'; export var bulletList = bulletListFactory({ parseDOM: [{ tag: 'ul' }], toDOM: function toDOM() { var attrs = { class: bulletListSelector.substr(1) }; return ['ul', attrs, 0]; } });