从Summernote移除Arial和Helvetica字体

时间:2018-12-06 15:12:21

标签: javascript python html django summernote

我正尝试仅使用Roboto,但是Summernote添加到了Arial和Helvetica。有没有办法删除它们?

enter image description here

SUMMERNOTE_CONFIG = {
    'summernote': {

        # As an example, using Summernote Air-mode
        'airMode': False,

        # Change editor size
        'width': '100%',
        'height': '480',

        'fontNames': ['Roboto Light', 'Roboto Regular', 'Roboto Bold'],
        'fontNamesIgnoreCheck': ['Roboto Light', 'Roboto Regular', 'Roboto Bold'],

        'toolbar': [
            ['style', ['style']],
            ['fontname', ['fontname']],
            ['color', ['color']],
            ['para', ['ul', 'ol', 'paragraph']],
            ['height', ['height']],
            ['table', ['table']],
            ['insert', ['link', 'picture', 'hr']],
            ['view', ['fullscreen', 'codeview']],
            ['help', ['help']]
        ],

        'styleTags': ['p', 'h1', 'h2', 'h3', 'small'],


    },

}

我正在使用Django-Summernote

1 个答案:

答案 0 :(得分:0)

在CSS文件中设置所需的字体系列。 (默认)。

或添加html。示例:

 <style>
    body {
        font-family: "Roboto Light"
    }
 </style>

然后SUMMERNOTE_CONFIG会起作用。