2

これは ( http://ckeditor.com/forums/Support/syntaxhighlight-in-customized-toolbar )にも投稿されています。

CKEditor のフル ビルドをダウンロードし、Syntaxhighlighter インターフェイスを追加しました ( http://ckeditor.com/addon/syntaxhighlightから)。サイトのさまざまな場所でさまざまな用途にエディターを使用しているため、使用ごとにカスタマイズされたツールバーをセットアップできるようにしたいと考えています。CKEditor 3 (および FCKEditor!) を使用して、config.js ファイルに名前付きツールバーを設定することに慣れましたが、Syntaxhighlighter Interface ボタンを表示できません。

私のconfig.toolbarコードは以下にあります(「挿入」ツールバーの「コード」ボタンに注意してください)。

config.toolbar = [
    { name: 'document', groups: [ 'mode', 'document', 'doctools' ], items: [ 'Source', '-', 'Templates'] },
    { name: 'tools', items: [ 'Maximize', 'ShowBlocks' ] },
    { name: 'clipboard', groups: [ 'clipboard', 'undo' ], items: [ 'Paste', 'PasteText', 'PasteFromWord' ] },
    { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ], items: [ 'SelectAll' ] },
    { name: 'links', items: [ 'Link', 'Unlink', 'Anchor' ] },
    { name: 'insert', items: [ 'Image', 'Table', 'HorizontalRule', 'SpecialChar', 'Code' ] },
    '/',
    { name: 'colors', items: [ 'TextColor', 'BGColor' ] },
    { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] },
    { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ] },
    '/',
    { name: 'styles', items: [ 'Styles', 'Format', 'Font', 'FontSize' ] },
    { name: 'others', items: [ '-' ] },
];

助けてください...

4

0 に答える 0