我正在使用 Django-ckeditor-updated 来构建 CMS,并且正在尝试使用 Ckeditor youtube 插件(http://ckeditor.com/addon/youtube),但它没有出现在工具栏中。
我已将插件下载到 ckeditor 插件文件夹,然后编辑其中CKEDITOR_CONFIGS
以settings.py
显示 youtube 插件,但它无法正常工作。有任何想法吗?
CKEDITOR_CONFIGS = {
'default': {
'toolbar': 'CMS',
'toolbar_CMS': [
{
'name': 'basicstyles',
'groups': ['basicstyles', 'cleanup'],
'items': ['Bold', 'Italic', 'Underline', '-', 'RemoveFormat']
},
{
'name': 'paragraph',
'groups': ['list', 'indent', 'blocks'],
'items': ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote']
},
{
'name': 'links',
'items': ['Link', 'Unlink']
},
{
'name': 'insert',
'items': ['Image', 'HorizontalRule', 'Table', 'Iframe', ]
},
{
'name': 'colors',
'items': ['TextColor', 'BGColor']
},
{
'name': 'youtube',
'items': ['youtube',]
}
],
'height': 400,
'width': '100%',
'allowedContent': True,
'uiColor': '#f0f0f0',
'extraPlugins': 'link,iframe,colorbutton,autogrow,youtube',
'autoGrow_maxHeight': 800,
'autoGrow_minHeight': 400,
'removePlugins': 'resize',
'removeButtons': None,
'contentsCss': ['/static/css/news_show.css', '/static/css/cke.css'],
},
}