我已经安装了mpowaga:autoform-summernote
,djedi:sanitize-html
尝试清理进入的数据,simpleschema
但是我不确定我是如何让它工作的。我只希望用户能够添加“p”和“a”标签以及粗体和斜体样式。我在这里做错了什么?
description: {
type: String,
optional: true,
autoform: {
afFieldInput: {
type: 'summernote',
class: 'editor',
settings: {
allowedTags: ['p', 'a'],
toolbar: [
['style', ['bold', 'italic']],
['para', ['ul', 'ol']]
]
}
}
}
}