如何在CKEditor 5配置文件中提及插件

时间:2018-11-05 04:27:08

标签: ckeditor5

在CKEditor 4中,我们可以使用以下配置来添加其他插件。我们如何在ckeditor 5中实现它?

toolbar: [
      { name: 'document', items: ['Source', '-', 'DocProps', 'Preview', 'Print', '-', 'Templates'] },
      { name: 'clipboard', items: ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo'] },
      { name: 'editing', items: ['Find', 'Replace', '-', 'SelectAll', '-', 'SpellChecker', 'Scayt'] },
      { name: 'tools', items: ['Maximize', 'ShowBlocks', '-', ] },
        '/',
      { name: 'basicstyles', items: ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat'] },
      { name: 'colors', items: ['TextColor', 'BGColor'] },
      { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent',
       '-', 'Blockquote', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'BidiLtr', 'BidiRtl'] },
        '/',
      { name: 'links', items: ['Link', 'Unlink', 'Anchor'] },
      { name: 'styles', items: ['Styles', 'Format', 'Font', 'FontSize'] }
    ]

谢谢。