我正在尝试在Django项目的ckeditor中添加span容器, 目前我的Ckeditor只有DIV容器, 但我需要像Div容器一样添加SPAN容器,才能添加一些span容器。 我的django设置有:
CKEDITOR_UPLOAD_PATH = 'uploads/'
CKEDITOR_JQUERY_URL = 'https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js'
CKEDITOR_IMAGE_BACKEND = 'pillow'
CKEDITOR_CONFIGS = {
'awesome_ckeditor': {
'toolbar': 'full' ,
'width': '100%',
},
}