有谁知道如何让 advancedContentFilter 在 django-ckeditor 配置设置中工作?我试图过滤粘贴在 p 标签中以删除样式属性。我在 settings.py 中使用了以下内容,但它似乎没有注册。

CKEDITOR_CONFIGS = {
    'allowedContent':'p',
}

最佳答案

这对我有用

CKEDITOR_CONFIGS = {
  'default': {
    'removePlugins': 'stylesheetparser',
    'allowedContent': True,
  },
}

关于Django CKEditor AllowedContent,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22147388/

10-12 13:31