UNPKG

@udecode/plate-horizontal-rule

Version:

Horizontal rule plugin for Plate

21 lines 423 B
// src/lib/BaseHorizontalRulePlugin.ts import { createSlatePlugin } from "@udecode/plate"; var BaseHorizontalRulePlugin = createSlatePlugin({ key: "hr", node: { isElement: true, isVoid: true }, parsers: { html: { deserializer: { rules: [ { validNodeName: "HR" } ] } } } }); export { BaseHorizontalRulePlugin }; //# sourceMappingURL=index.mjs.map