カスタムstylesSetの追加をテストしています。だから私のコードで私は以下を追加します(の指示に従って)
CKEDITOR.stylesSet.add('custom_style', [
{ name: 'No UL Bullets', element: 'ul', styles: { 'list-style-type': 'none' } },
{ name: 'My Custom Inline', element: 'span', attributes: { 'class': 'mine' } }
]);
oEditor.config.stylesSet = 'custom_style';
問題は、CKEditorに付属している残りのデフォルトスタイルを上書きすることです。新しいスタイルに既存のスタイルを追加する方法がわからないようです。何か案は?