Page tree
Skip to end of metadata
Go to start of metadata


RELEASE 2.4.0 OR ABOVE

It is customized spell check plugin using API provided at webspellchecker.com

To use this plugin, you shall purchase the license at webspellchecker.com.

How to Use

Loading Plugin File

<link rel="stylesheet" href="URL of webSpellChecker.min.css">
<script src="URL of webSpellChecker.min.js"></script>

UI

You may add the button to toolbar and menu with 'webSpellChecker', the name of the plugin.

Adding to Toolbar

Editor Configuration
//...
'editor.toolbar': [
	//...,
	'webSpellChecker',
	//...
],
// ...

Adding to Menu

Editor Configuration
//...
'editor.menu.definition': {
	//...,
	'tools': [
		//...,
		'webSpellChecker',
		//...
	],
	//...
},
//...

API Configuration

You shall set parameters to use API in editor configuration object.

Editor Configuration
//...
'webSpellChecker.config: {
	'url': 'http://svc.webspellchecker.net/spellcheck31/script/ssrv.fcgi',
	'customid': 'Key you received after purchasing the license',
	'defaultLanguage': 'Target Language'
},
//...
  • No labels