我想将我的 Jodit 依赖项更新到最新版本,但我想禁用有序列表和无序列表的不同列表样式类型。有什么办法可以做到这一点?
在我目前使用的旧版本中,我可以简单地选择有序列表或无序列表。
在最新版本中,有不同的样式,但我只想<ul></ul>
或<ol></ol>
不给用户选项值来选择,例如“Lower Alpha”或“Lower Greek”
您可以使用 Jodit Playground禁用插件。有序列表和无序列表属于一起,可以通过以下方式禁用:
var editor = new Jodit("#editor", {
"disablePlugins": "ordered-list"
});
ul
ol
我通过覆盖控件的配置部分解决了它。
__Editor = new Jodit('#editor', {
controls: {
ul: {
list: Jodit.atom({
default: 'Default'
})
},
ol: {
list: Jodit.atom({
default: 'Default'
})
}
}
});
Jodit.atom
导致替换默认值。
https://xdsoft.net/jodit/pro/docs/how-to/add-custom-font-family.md
您可以在插件定义文件中找到默认值: https ://xdsoft.net/jodit/pro/docs/how-to/add-custom-font-family.md