我想为symfony5安装CKeditor5。
composer require friendsofsymfony/ckeditor-bundle
php bin/console ckeditor:install这给了我CKeditor4 ..。
是否可以使用CKeditor5,如果可能的话,可以使用在线生成器CKEditor生成的自定义版本,就像CKedtor4的情况一样……
谢谢:)。
发布于 2020-11-08 01:31:41
是的,你可以这样做。
https://symfony.com/doc/1.0/bundles/FOSCKEditorBundle/usage/ckeditor.html#ckeditor-version
因此,与其运行:
php bin/console ckeditor:install您的do:
$ php bin/console ckeditor:install --tag=所以你可以在你的标签中定义你想要的版本。
您可能希望尝试ckeditor官方存储库中提供的标签,以获得您想要的标签。
https://stackoverflow.com/questions/64729260
复制相似问题