浏览代码

updateMark instead of toggleMark

master
choj 4 年前
父节点
当前提交
3d63fbe9c1
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      src/components/extensions/CustomStyle.js

+ 3
- 3
src/components/extensions/CustomStyle.js 查看文件

@@ -1,5 +1,5 @@
import {Mark} from "tiptap";
import {toggleMark} from "tiptap-commands";
import {toggleMark, updateMark} from "tiptap-commands";


// — Mot - Accronyme
@@ -48,7 +48,7 @@ export default class CustomStyle extends Mark {
{
tag: "span.dede-style",
getAttrs(dom) {
return {type: dom.classList[1]};
return {type: dom.classList};
}
}
],
@@ -59,6 +59,6 @@ export default class CustomStyle extends Mark {
}

commands({type}) {
return attrs => toggleMark(type, attrs);
return attrs => { return updateMark(type, attrs);}
}
}

正在加载...
取消
保存