4

我在摆弄django-tinyMCE并注意到一些配置没有得到应用。这是我的 settings.py 中的代码

TINYMCE_DEFAULT_CONFIG = {
    'theme' : 'advanced',
    'theme_advanced_buttons1' : 'bold,italic,underline,separator,bullist,numlist,separator,link,unlink',
    'theme_advanced_buttons2' : '',
    'theme_advanced_buttons3' : '',
    'theme_advanced_toolbar_location' : 'top',
    'theme_advanced_toolbar_align': 'left',
    'paste_text_sticky': 'true',
    'paste_text_sticky_default' : 'true',
    'valid_styles' : 'font-weight,font-style,text-decoration',
}

不工作的是:paste_text_sticky、paste_text_sticky_default 和 valid_styles。

我基本上想做的是:

只允许

  • 文本为“粗体/斜体/下划线”
  • 列表(项目符号、数字)
  • 链接

其他一切都是禁止的。

你知道我做错了什么吗?非常感谢。

4

1 回答 1

7

您需要使用 Python True/Falsepaste_text_stickypaste_text_sticky_default.

TINYMCE_DEFAULT_CONFIG = {
    'theme' : 'advanced',
    'theme_advanced_buttons1' : 'bold,italic,underline,separator,bullist,numlist,separator,link,unlink',
    'theme_advanced_buttons2' : '',
    'theme_advanced_buttons3' : '',
    'theme_advanced_toolbar_location' : 'top',
    'theme_advanced_toolbar_align': 'left',
    'paste_text_sticky': True,
    'paste_text_sticky_default' : True,
    'valid_styles' : 'font-weight,font-style,text-decoration',
}

查看与有效子项和样式相关的Stack Overflow 帖子。希望对您有所帮助。

于 2012-09-07T13:23:11.897 回答