我想将不同的自定义属性添加到我的 bootstrap-wysihtml5 编辑器的 html 视图中。但默认情况下它们会被剥离 perserRules。
那么是否有任何简单的 perserRule 允许我的所有自定义属性?
更新
我目前正在做的是:
tags: {
"input": {
"check_attributes": {
"class": "alt",
"type": "alt",
"fieldvalue": "alt",
"fieldname": "alt"
}
},
"textarea": {
"check_attributes": {
"class": "alt",
"fieldtitle": "alt",
"fieldname": "alt"
}
},
....}
像这样。而我需要的是,
tags: {
"input": {
"*":"alt"
},
"textarea": {
"*":"alt"
},
}
谢谢。