Spell checking and grammar-addon hints
These are initialization options rather than runtime commands, but they were documented in the old basic API page
and still make sense to demonstrate together because they change the editable element itself. In the current build,
disabled values remove the corresponding attributes instead of storing a literal false string.
Default writing aids
This editor uses the default spellCheck: true and leaves grammar helpers alone.
Spellcheck off and grammar disabled
This editor turns spell checking off; in the current build the disabled attributes are removed from the editable area instead of being written as string values.
Editable attributes
Ready.
Example configuration - Writing Aids
summernote.create('#writing-aids-default', {
height: 220,
});
summernote.create('#writing-aids-disabled', {
height: 220,
spellCheck: false,
disableGrammar: true,
});