I want to add different user attributes to the html view of my bootstrap-wysihtml5 editor. but they are shared by default perserRules.
So, is there a simple perserRule to allow all of my user attributes?
Update
I am currently doing the following:
tags: { "input": { "check_attributes": { "class": "alt", "type": "alt", "fieldvalue": "alt", "fieldname": "alt" } }, "textarea": { "check_attributes": { "class": "alt", "fieldtitle": "alt", "fieldname": "alt" } }, ....}
in this way. And I need how,
tags: { "input": { "*":"alt" }, "textarea": { "*":"alt" }, }
Thanks.
sovan source share