CKEditor 4以降、Justifyプラグインが必要です。
- Justifyプラグインをここからダウンロード
- ckeditor /plugins/に貼り付けます
- プラグインをckeditorに追加します。
これがjavascriptコードです:
$(function() {
CKEDITOR.config.extraPlugins = 'justify';
});
これ以上行うことはありません。Justifyプラグインがparagraph
toolbarGroupに自動的に追加されます
編集
によってalignment
、私はあなたがright|center|left
整列について話していると思いました。
ここで、hタグについては、これらのグループがあります。
if ( element.is( 'h1', 'h2', 'h3' ) || element.getAttribute( 'id' ) == 'taglist' ) {
editor.on( 'configLoaded', function() {
editor.config.removePlugins = 'colorbutton,find,flash,font,' +
'forms,iframe,image,newpage,removeformat,scayt,' +
'smiley,specialchar,stylescombo,templates,wsc';
editor.config.toolbarGroups = [
{ name: 'editing', groups: [ 'basicstyles', 'links' ] },
{ name: 'undo' },
{ name: 'clipboard', groups: [ 'selection', 'clipboard' ] },
{ name: 'about' }
];
});
}
['basicstyles', 'links', 'undo', 'selection', 'clipboard', 'about']
、グループはありませんalign
。追加するだけです。
新しいCKEditorのインストール後にイベントを変更する必要はありません。このグループはすでにインライン基本構成になっています