@kedao/editor
Version:
Rich Text Editor Based On Draft.js
11 lines • 447 B
JavaScript
import { RichUtils } from 'draft-js';
const leaveList = (editorState) => {
const contentState = editorState.getCurrentContent();
const selection = editorState.getSelection();
const key = selection.getStartKey();
const currentBlock = contentState.getBlockForKey(key);
const type = currentBlock.getType();
return RichUtils.toggleBlockType(editorState, type);
};
export default leaveList;
//# sourceMappingURL=leaveList.js.map