Is there a way to add more than one class with ckeditor style list ?
I have two class in my ckeditor.style.js
{ name: 'Important (petit)', element: 'p', attributes: { 'class': 'important-small' } },
{ name: 'Capitalize', element: 'p', attributes: { 'class': 'caps' } },
I want, if you select via the style list the two classes this result :
<p class="important-small caps">my test</p>
But if I select one class and another one just after, the first class disappear, replaced by the second