We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17cc8a6 commit 9bf3292Copy full SHA for 9bf3292
web_src/js/features/comp/ComboMarkdownEditor.js
@@ -206,11 +206,24 @@ class ComboMarkdownEditor {
206
prepareEasyMDEToolbarActions(EasyMDE, isWiki) {
207
this.easyMDEToolbarDefault = [
208
{
209
- name: 'heading',
+ name: 'heading-1',
210
+ action: EasyMDE.toggleHeading1,
211
+ icon: svg('octicon-heading'),
212
+ title: 'Heading',
213
+ },
214
+ {
215
+ name: 'heading-2',
216
+ action: EasyMDE.toggleHeading2,
217
218
219
220
221
+ name: 'heading-3',
222
action: EasyMDE.toggleHeading3,
223
icon: svg('octicon-heading'),
224
title: 'Heading',
225
},
226
+ '|',
227
228
name: 'bold',
229
action: EasyMDE.toggleBold,
0 commit comments