如何在 summernote 中设置自定义字体大小列表?

How to set custom fontsize list in summernote?

我正在使用 summernote,有时我需要的字体值高于字体大小列表中可用的字体值。这是我当前的代码:

$('#summernote').summernote({
  toolbar: [
    ['style', ['style']],
    ['fontsize', ['fontsize']],
    ['font', ['bold', 'italic', 'underline', 'clear']],
    ['fontname', ['fontname']],
    ['color', ['color']],
    ['para', ['ul', 'ol', 'paragraph']],
    ['height', ['height']],
    ['insert', ['picture', 'hr']],
    ['table', ['table']]
  ],
  height: 585,
  focus: false
});

我尝试在工具栏中设置字体大小(数字,如 10、20、25、30),但没有用。有没有办法设置我自己的自定义字体大小列表?

要设置自定义字体大小列表,请将其添加到您的选项中:) 选项:

$('#summernote').summernote({
    fontSizes: ['8', '9', '10', '11', '12', '14', '18', '24', '36', '48' , '64', '82', '150']
});