Skip to content

Commit b660852

Browse files
author
Dennis Suitters
authored
Add description for disableGrammar and spellCheck
Add descriptions for `disableGrammar` and previously undocumented `spellCheck`.
1 parent b89156c commit b660852

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

01-deep-dive.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,22 @@ If you want to enable editor again, call API with `enable`.
299299
$('#summernote').summernote('enable');
300300
{% endhighlight %}
301301

302+
### Disable Spellchecking
303+
You can disable Spellchecking in the Editing area with the `spellCheck` option.
304+
{% highlight javascript %}
305+
$('#summernote').summernote({
306+
spellCheck: true
307+
});
308+
{% endhighlight %}
309+
310+
### Disable Grammarly Browser Addon
311+
You can disable the Grammarly Browser Addon (currently researching other Grammar Addons for their disabling options) by using the `disableGrammar` option.
312+
{% highlight javascript %}
313+
$('#summernote').summernote({
314+
disableGrammar: false
315+
});
316+
{% endhighlight %}
317+
302318
### focus
303319
Sets focus in current summernote
304320

0 commit comments

Comments
 (0)