我正在使用Slate.js构建一个富文本编辑器。我设置了一个内联格式,可以使用以下函数切换:
toggleInline: function (editor, format) {
const isActive = this.isFormatActive(editor, format, TYPES.FORMATS.INLINE);
if (isActive) {
Transforms.unwrapNodes(editor, {
match: node => !this.isEditor(node) && Element.isElement(node) && node.type === format
});
} else {
const inline = { type: format, children: noChildren };
Transforms.wrapNodes(editor, inline, { split: true });
}
}
它工作正常,但如果我选择多行,我想忽略空行,这样就不会插入空块。例如,我只想换行A
和B
,但不想换行:
相应的子级如下所示:
[
{ type: "p", children: [{ text: "A" }]},
{ type: "p", children: [{ text: "" }]},
{ type: "p", children: [{ text: "B" }]}
]
我尝试在wrapNodes
上添加一个match
选项,但它擦除了空行,而不是跳过它们:
Transforms.wrapNodes(editor, inline, {
match: node => node.text !== emptyString
split: true
});
我该怎么办呢?
1条答案
按热度按时间imzjd6km1#
事实证明,
match
选项是可行的,我只需要使用一个适当的函数来检查元素是否为空:我的自定义
isEmpty
函数: