有谁知道如何在django-ckeditor配置设置中使用advancedContentFilter?我试图过滤粘贴在p标签中以删除样式属性。我在settings.py中使用以下内容但它似乎没有注册。
CKEDITOR_CONFIGS = {
'allowedContent':'p',
}
答案 0 :(得分:3)
这对我有用
CKEDITOR_CONFIGS = {
'default': {
'removePlugins': 'stylesheetparser',
'allowedContent': True,
},
}
答案 1 :(得分:1)
CKEDITOR_CONFIGS是一个配置字典,而不是配置字典:D尝试:
CKEDITOR_CONFIGS = {
'default': {
'allowedContent':'p',
},
}
答案 2 :(得分:0)
您是否尝试删除stylesheetparser
插件?
https://github.com/shaunsephton/django-ckeditor#if-you-want-to-use-allowedcontent