feat(balloon): group some items under Insert submenu

This commit is contained in:
Elian Doran 2024-11-28 20:01:05 +02:00
parent 75a81dc28e
commit 1e0f5312e8

View File

@ -42,14 +42,25 @@ export default class BalloonEditor extends BalloonEditorBase {
'|',
'bulletedList', 'numberedList', 'todoList',
'|',
'blockQuote', 'codeBlock', 'insertTable', 'internallink', 'includeNote', 'math',
'blockQuote', 'codeBlock', 'insertTable',
{
label: "Insert",
icon: "plus",
items: [
'internallink',
'includeNote',
'|',
'math',
'horizontalLine'
]
},
'|',
'outdent', 'indent', 'horizontalLine',
'outdent', 'indent',
'|',
'imageUpload',
'markdownImport',
'findAndReplace',
'specialCharacters'
'specialCharacters',
'findAndReplace'
]
};
}