从 Summernote 中删除 Arial 和 Helvetica 字体
Posted
技术标签:
【中文标题】从 Summernote 中删除 Arial 和 Helvetica 字体【英文标题】:Remove Arial and Helvetica fonts from Summernote 【发布时间】:2019-05-08 07:48:51 【问题描述】:我正在尝试仅使用 Roboto,但 Summernote 添加到此 Arial 和 Helvetica。有没有办法删除它们?
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】:在您的 css 文件中设置您想要的字体系列。 (默认)。
或者在html中添加。示例:
<style>
body
font-family: "Roboto Light"
</style>
SUMMERNOTE_CONFIG
会起作用。
【讨论】:
这个css在哪里,具体是哪个文件?以上是关于从 Summernote 中删除 Arial 和 Helvetica 字体的主要内容,如果未能解决你的问题,请参考以下文章