Python 如何在django ckeditor中使用mathjax?

Python 如何在django ckeditor中使用mathjax?,python,django,ckeditor,Python,Django,Ckeditor,我目前正在使用Django进行开发,我使用Django-ckeditor来使用ckeditor。 我想在ckeditor中使用mathjax,但设置不会反映在ckeditor中。我该怎么办 我的settings.py CKEDITOR_CONFIGS = { 'default': { 'toolbar': 'Custom', 'toolbar_Custom': [ ['Bold'], ] } } 它在上面的

我目前正在使用Django进行开发,我使用
Django-ckeditor
来使用
ckeditor
。 我想在ckeditor中使用
mathjax
,但设置不会反映在ckeditor中。我该怎么办

我的
settings.py

CKEDITOR_CONFIGS = {
    'default': {
        'toolbar': 'Custom',
        'toolbar_Custom': [
            ['Bold'],
        ]
    }
}
它在上面的示例中起作用,但在下面的示例中不起作用

CKEDITOR_CONFIGS = {
    'default': {
        'toolbar': 'Custom',
        'toolbar_Custom': [
            ['mathjax'],
        ]
    }
}
不过,mathjax似乎支持默认设置