在Summernote wysiwyg编辑器中,我想要主菜单上的缩进和突出按钮,但没有段落选项。
创建实例时,按以下方式定义按钮和弹出窗口:
toolbar: [
['style', ['style']],
['font', ['bold', 'italic', 'underline', 'clear']],
['fontname', ['fontname']],
['color', ['color']],
['para', ['ul', 'ol', 'paragraph']],
['height', ['height']],
['table', ['table']],
['insert', ['link', 'picture', 'hr']],
['view', ['fullscreen', 'codeview']],
['help', ['help']]
],
我的问题是“段落”条目。 “段落”中的按钮是否以另一种方式曝光?
我想要这样的事情:
toolbar: [
['font', ['bold', 'italic', 'underline', 'clear']],
['para', ['ul', 'ol', 'INDENT', 'OUTDENT']]
]
是否可以在某处访问这些按钮?我搜索文档无济于事。我希望你能在我抓取代码之前节省一些时间。
由于