Laravel Backpack 6 ckeditor 5 查看源码按钮

问题描述 投票:0回答:1

我正在使用背包 6 和 ckeditor 5... 如何将“查看源代码”按钮添加到 ckeditor 导航栏上?

并且还允许在所见即所得中添加 div 和 class 标签而不将它们删除?

我尝试使用以下方式安装它:

npm install @ckeditor/ckeditor5-source-editing
然后在现场使用它:

$this->crud->addField([
    'name' => 'body',
    'type' => 'ckeditor',
    'extra_plugins' => [
        'source-editing',
    ]
]);

但是找不到

plugincollection.ts:396 Uncaught (in promise) CKEditorError: plugincollection-plugin-not-found {"plugin":"source-editing"}

任何帮助都会很棒,ta

ckeditor5 laravel-backpack
1个回答
0
投票

要向 CKEditor 添加更多插件,请按照指南此处

© www.soinside.com 2019 - 2024. All rights reserved.