You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should be possible to allow all elements in given element. I see it along these lines: schema.allow( { name: '*', inside: 'elem' } );. elem chould be $root for example.
The text was updated successfully, but these errors were encountered:
It's not enough to allow all. For instance, if one adds quote to root and then wants to add paragraph to that quote the config "Allow * inside root" will disallow adding paragraph in quote. We need "Allow * inside *":
schema.allow( { name: '*', inside: '*' } );
Also, we should be able to allow any attribute on any element.
It should be possible to allow all elements in given element. I see it along these lines:
schema.allow( { name: '*', inside: 'elem' } );
.elem
chould be$root
for example.The text was updated successfully, but these errors were encountered: