Skip to content Skip to sidebar Skip to footer

How To Add Wiris To Django-ckeditor

I want to use CKEditor+WIRIS plugin in my Django-based project. I successfully installed django-ckeditor. But I dont know which WIRIS plugin should be used. In download page, there

Solution 1:

Download it from HERE then extract it in path bellow

<BASE_DIR>/static/ckeditor/plugins/

then you can add it to your plagins :

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

}}

Post a Comment for "How To Add Wiris To Django-ckeditor"