Skip to content

Spellcheck disabled #98

@asalimian

Description

@asalimian

The overtype documentation says that the browser spellcheck feature is used, but it is disabled this.textarea.setAttribute('spellcheck', 'false');

I used a workaround to re-activate the spellcheck

const textarea = markdownEditorRef.current?.querySelector("textarea");
if (textarea) {
    textarea.setAttribute("spellcheck", "true");
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions