From ec28c508c84434fd72678fb388687b7e15d8872b Mon Sep 17 00:00:00 2001 From: valentijnscholten Date: Sun, 4 May 2025 16:12:43 +0200 Subject: [PATCH 1/3] Make it more clear how to use native spell checker --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 529509e..ed89d97 100644 --- a/README.md +++ b/README.md @@ -197,7 +197,7 @@ easyMDE.value('New input for **EasyMDE**'); - **showIcons**: An array of icon names to show. Can be used to show specific icons hidden by default without completely customizing the toolbar. - **spellChecker**: If set to `false`, disable the spell checker. Defaults to `true`. Optionally pass a CodeMirrorSpellChecker-compliant function. - **inputStyle**: `textarea` or `contenteditable`. Defaults to `textarea` for desktop and `contenteditable` for mobile. `contenteditable` option is necessary to enable nativeSpellcheck. -- **nativeSpellcheck**: If set to `false`, disable native spell checker. Defaults to `true`. +- **nativeSpellcheck**: If set to `false`, disable native spell checker. Defaults to `true`. Only works when `inputStyle` is set to `contenteditable` - **sideBySideFullscreen**: If set to `false`, allows side-by-side editing without going into fullscreen. Defaults to `true`. - **status**: If set to `false`, hide the status bar. Defaults to the array of built-in status bar items. - Optionally, you can set an array of status bar items to include, and in what order. You can even define your own custom status bar items. From 3c0ea3f3198f18613bfdfb78d68a60c0ba2bcf07 Mon Sep 17 00:00:00 2001 From: valentijnscholten Date: Sun, 4 May 2025 16:15:03 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ed89d97..694ed72 100644 --- a/README.md +++ b/README.md @@ -197,7 +197,7 @@ easyMDE.value('New input for **EasyMDE**'); - **showIcons**: An array of icon names to show. Can be used to show specific icons hidden by default without completely customizing the toolbar. - **spellChecker**: If set to `false`, disable the spell checker. Defaults to `true`. Optionally pass a CodeMirrorSpellChecker-compliant function. - **inputStyle**: `textarea` or `contenteditable`. Defaults to `textarea` for desktop and `contenteditable` for mobile. `contenteditable` option is necessary to enable nativeSpellcheck. -- **nativeSpellcheck**: If set to `false`, disable native spell checker. Defaults to `true`. Only works when `inputStyle` is set to `contenteditable` +- **nativeSpellcheck**: If set to `false`, disable native spell checker. Defaults to `true`. Only works when `inputStyle` is set to `contenteditable` and spellChecker is set to `false`. - **sideBySideFullscreen**: If set to `false`, allows side-by-side editing without going into fullscreen. Defaults to `true`. - **status**: If set to `false`, hide the status bar. Defaults to the array of built-in status bar items. - Optionally, you can set an array of status bar items to include, and in what order. You can even define your own custom status bar items. From e9f3cd275ce8b4184407a7fc3d46b264113996cd Mon Sep 17 00:00:00 2001 From: valentijnscholten Date: Sun, 4 May 2025 16:15:31 +0200 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 694ed72..eb48227 100644 --- a/README.md +++ b/README.md @@ -197,7 +197,7 @@ easyMDE.value('New input for **EasyMDE**'); - **showIcons**: An array of icon names to show. Can be used to show specific icons hidden by default without completely customizing the toolbar. - **spellChecker**: If set to `false`, disable the spell checker. Defaults to `true`. Optionally pass a CodeMirrorSpellChecker-compliant function. - **inputStyle**: `textarea` or `contenteditable`. Defaults to `textarea` for desktop and `contenteditable` for mobile. `contenteditable` option is necessary to enable nativeSpellcheck. -- **nativeSpellcheck**: If set to `false`, disable native spell checker. Defaults to `true`. Only works when `inputStyle` is set to `contenteditable` and spellChecker is set to `false`. +- **nativeSpellcheck**: If set to `false`, disable native spell checker. Defaults to `true`. Only works when `inputStyle` is set to `contenteditable` and `spellChecker` is set to `false`. - **sideBySideFullscreen**: If set to `false`, allows side-by-side editing without going into fullscreen. Defaults to `true`. - **status**: If set to `false`, hide the status bar. Defaults to the array of built-in status bar items. - Optionally, you can set an array of status bar items to include, and in what order. You can even define your own custom status bar items.