UNPKG

@vnetwork/richtext-editor

Version:

react richtext editor, only using for internal purpose

11 lines (8 loc) 198 B
const withLinks = editor => { const { isInline } = editor; editor.isInline = element => element.type === "link" ? true : isInline(element); return editor; }; export default withLinks;