
It is customized spell check plugin using API provided at webspellchecker.com.
To use this plugin, you shall purchase the license at webspellchecker.com.
<link rel="stylesheet" href="URL of webSpellChecker.min.css"> <script src="URL of webSpellChecker.min.js"></script> |
You may add the button to toolbar and menu with 'webSpellChecker', the name of the plugin.
//... 'editor.toolbar': [ //..., 'webSpellChecker', //... ], // ... |
//...
'editor.menu.definition': {
//...,
'tools': [
//...,
'webSpellChecker',
//...
],
//...
},
//... |
You shall set parameters to use API in editor configuration object.
//...
'webSpellChecker.config: {
'url': 'http://svc.webspellchecker.net/spellcheck31/script/ssrv.fcgi',
'customid': 'Key you received after purchasing the license',
'defaultLanguage': 'Target Language'
},
//... |