해결책을 찾았습니다.
필터링이 해제되어 작동하지만 좋은 생각은 아닙니다 ...
config.allowedContent = true;
클래스 및 스타일 필터링을 위해 () 및 {}가 있기 때문에 컨텐츠 문자열을 사용하는 것은 id 등에서는 잘 작동하지만 클래스 및 스타일 속성에는 적합하지 않습니다.
따라서 내 베팅은 편집기에서 클래스를 허용하는 것입니다.
config.extraAllowedContent = '*(*)';
이것은 모든 클래스와 인라인 스타일을 허용합니다.
config.extraAllowedContent = '*(*);*{*}';
태그에 대해 class = "asdf1"및 class = "asdf2"만 허용하려면 다음을 수행하십시오.
config.extraAllowedContent = '*(asdf1,asdf2)';
(따라서 클래스 이름을 지정해야합니다)
p 태그에 대해서만 class = "asdf"만 허용하려면 다음을 수행하십시오.
config.extraAllowedContent = 'p(asdf)';
태그에 id 속성을 허용하려면 다음을 수행하십시오.
config.extraAllowedContent = '*[id]';
등
스타일 태그를 허용하려면 (<style type = "text / css"> ... </ style>) :
config.extraAllowedContent = 'style';
좀 더 복잡해 지려면 :
config.extraAllowedContent = 'span;ul;li;table;td;style;*[id];*(*);*{*}';
더 나은 솔루션이기를 바랍니다 ...