尝试在 quill 中使用公式模块时出现错误。
错误是:
"[Parchment] Unable to create formula blot"
按照 chrome web 开发工具中的错误消息导致以下行registry.ts
(webpack:///./~/parchment/src/registry.ts)
function create(input, value) {
var match = query(input);
if (match == null) {
throw new ParchmentError("Unable to create " + input + " blot");
}
var BlotClass = match;
var node = input instanceof Node ? input : BlotClass.create(value);
return new BlotClass(node, value);
}
当我尝试插入公式时会发生这种情况。
当我使用quill-rails5
但不使用 gem 时会发生这种情况。我删除了 gem 以简化问题。这是我的代码:
var quill = new Quill('#editor', {
modules: {
formula: true,
toolbar: [
[{ header: [1, 2, false] }],
['bold', 'italic', 'underline'],
['image', 'code-block'],
['formula'],
]
},
placeholder: 'Compose a solution...',
theme: 'snow' // or 'bubble'
});
我的编辑器容器
<div id="editor">
<%= raw sanitize @post.description, tags: %w(strong em div a p br ul ol li), attributes: %w(href) %>
</div>