2

这也发布在(http://ckeditor.com/forums/Support/syntaxhighlight-in-customised-toolbar

我已经下载了 CKEditor 的完整版本并添加了 Syntaxhighlighter 接口(来自http://ckeditor.com/addon/syntaxhighlight)。我在我网站的不同地方使用编辑器用于不同的用途,因此希望能够为每次使用设置自定义工具栏。使用过 CKEditor 3(和 FCKEditor!)后,我习惯于在 config.js 文件中设置命名工具栏,但无法显示 Syntaxhighlighter 界面按钮。

我的 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