mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-22 00:55:24 +08:00
7 lines
164 B
JavaScript
7 lines
164 B
JavaScript
|
export default function (type) {
|
||
|
return (state, dispatch) => {
|
||
|
const { from, to } = state.selection
|
||
|
return dispatch(state.tr.removeMark(from, to, type))
|
||
|
}
|
||
|
}
|