Signal drop!
Relay (operand.online) is unreachable.
Usually, a dropped signal means an upgrade is happening. Hold on!
Sorry, no connección.
Hang in there while we get back on track
gram: docs
> ./packages/core/src/prosemirror/extensions/nodes/HorizontalRuleExtension.ts
/**
* Horizontal Rule Extension
*/
import { createNodeExtension } from '../create';
export const HorizontalRuleExtension = createNodeExtension({
name: 'horizontalRule',
schemaNodeName: 'horizontalRule',
nodeSpec: {
group: 'block',
parseDOM: [{ tag: 'hr' }],
toDOM() {
return ['hr'];
},
},
});