diff --git a/src/components/MarkdownEditor/default-options.js b/src/components/MarkdownEditor/default-options.js index 303aa13d..fd2a8179 100644 --- a/src/components/MarkdownEditor/default-options.js +++ b/src/components/MarkdownEditor/default-options.js @@ -7,25 +7,31 @@ export default { usageStatistics: false, hideModeSwitch: false, toolbarItems: [ - 'heading', - 'bold', - 'italic', - 'strike', - 'divider', - 'hr', - 'quote', - 'divider', - 'ul', - 'ol', - 'task', - 'indent', - 'outdent', - 'divider', - 'table', - 'image', - 'link', - 'divider', - 'code', - 'codeblock' + [ + 'heading', + 'bold', + 'italic', + 'strike' + ], + [ + 'hr', + 'quote' + ], + [ + 'ul', + 'ol', + 'task', + 'indent' + ], + [ + 'outdent', + 'table', + 'image', + 'link' + ], + [ + 'code', + 'codeblock' + ] ] }