试图让字体插件与 django cms 文本编辑器一起工作。我已将插件文件夹添加到.../djangocms_text_ckeditor/static/djangocms_text_ckeditor/ckeditor_plugins
和.../djangocms_text_ckeditor/static/djangocms_text_ckeditor/ckeditor/plugins
.
这是我添加到我的 settings.py
#----------------------------------------------------------
# Text Editor
#----------------------------------------------------------
CKEDITOR_CONFIGS = {
'toolbar' : 'CMS',
'toolbar_CMS': [
['Undo', 'Redo'],
['cmsplugins', '-', 'ShowBlocks'],
['font']
],
'extraPlugins': 'font',
}
在我的 cms 页面中编辑任何文本插件时,该插件不显示。我错过了什么或做错了什么?