Using Jupiter Notebook nbextentions I can enable spell checking within markdown cells.
It conveniently highlights bad spelling, but I cant see any correct suggestions.
It uses typo.js
...within which there is support for misspelling suggestions:
To get suggested corrections for a misspelled word, do this:
var array_of_suggestions = dictionary.suggest("mispeling");
How can I use this to see misspelling suggestions in Jupyter Notebooks ?