1
2
3
4
5
6
7
8
9
10
11
12
| // Here is a list of the toolbar
| // Detail list see https://www.tinymce.com/docs/advanced/editor-control-identifiers/#toolbarcontrols
|
| // 'searchreplace fontsizeselect bold italic underline strikethrough alignleft aligncenter alignright outdent indent blockquote undo redo removeformat subscript superscript code codesample',
| // 'hr bullist numlist link image charmap preview anchor pagebreak insertdatetime media table emoticons forecolor backcolor fullscreen',
|
| const toolbar = [
| 'searchreplace forecolor backcolor bold italic underline strikethrough alignleft aligncenter alignright outdent indent undo redo subscript superscript',
| 'fontsizeselect indent2em hr bullist numlist link image charmap anchor pagebreak code codesample blockquote removeformat fullscreen',
| ];
|
| export default toolbar;
|
|