如何将wiris添加到django-ckeditor

时间:2015-02-16 08:13:22

标签: python django plugins ckeditor django-ckeditor

我想在基于Django的项目中使用CKEditor + WIRIS插件。 我成功安装了django-ckeditor。但我不知道应该使用哪个WIRIS插件。在download page中,有一些用于php,Java,ASP和...的插件 但是Django或python没有任何插件。 我可以使用其中一个插件将其添加到django-ckeditor吗?哪一个和如何?

1 个答案:

答案 0 :(得分:0)

HERE下载,然后在下面的路径中解压

<BASE_DIR>/static/ckeditor/plugins/

然后您可以将其添加到您的 plagins 中:

CKEDITOR_CONFIGS = {
'default': {
    'toolbar': 'full',
        # ...
    'extraPlugins': ','.join([
        # ...
        'ckeditor_wiris',
        # ...
    ]),

}}