2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-23 09:54:28 -06:00

Update easymde.js

This commit is contained in:
Jonathan 2022-05-17 23:25:02 +02:00 committed by GitHub
parent 332cf61086
commit 9a57f00d92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -803,21 +803,21 @@ function toggleHeading3(editor) {
/** /**
* Action for toggling heading size 4 * Action for toggling heading size 4
*/ */
function toggleHeading3(editor) { function toggleHeading4(editor) {
_toggleHeading(editor.codemirror, undefined, 4); _toggleHeading(editor.codemirror, undefined, 4);
} }
/** /**
* Action for toggling heading size 5 * Action for toggling heading size 5
*/ */
function toggleHeading3(editor) { function toggleHeading5(editor) {
_toggleHeading(editor.codemirror, undefined, 5); _toggleHeading(editor.codemirror, undefined, 5);
} }
/** /**
* Action for toggling heading size 6 * Action for toggling heading size 6
*/ */
function toggleHeading3(editor) { function toggleHeading6(editor) {
_toggleHeading(editor.codemirror, undefined, 6); _toggleHeading(editor.codemirror, undefined, 6);
} }