我想更改Kendo Editor删除线工具的默认行为。当前,它将文本包装在标签中。但是我想用还是标签。根据此处可能的窗口小部件配置:https://demos.telerik.com/kendo-ui/editor/custom-tools,我认为这是可行的,但我不知道如何格式化选项
我的尝试失败:
$("#editor").kendoEditor({
formats: {
strikethrough: {
attr: {
style: {
textDecoration: "line-through"
}
},
tags: ["span"]
}
},
tools: ["strikethrough"]
});