2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-23 01:44:31 -06:00

Add header size 4, 5 and 6

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

3
types/easymde.d.ts vendored
View File

@ -265,6 +265,9 @@ declare class EasyMDE {
static toggleHeading1: (editor: EasyMDE) => void;
static toggleHeading2: (editor: EasyMDE) => void;
static toggleHeading3: (editor: EasyMDE) => void;
static toggleHeading4: (editor: EasyMDE) => void;
static toggleHeading5: (editor: EasyMDE) => void;
static toggleHeading6: (editor: EasyMDE) => void;
static toggleCodeBlock: (editor: EasyMDE) => void;
static toggleBlockquote: (editor: EasyMDE) => void;
static toggleUnorderedList: (editor: EasyMDE) => void;