UNPKG

@atlaskit/adf-schema

Version:

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

14 lines (13 loc) 161 B
/** * @name rule_node */ const hrDOM = ['hr']; export const rule = { group: 'block', parseDOM: [{ tag: 'hr' }], toDOM() { return hrDOM; } };