をインストールして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']]
]
}
}
}
}