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

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »


릴리즈 2.4.0 이상

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.toolbar': [
	//...,
	'webSpellChecker',
	//...
],
// ...

Adding to Menu

에디터 설정
//...
'editor.menu.definition': {
	//...,
	'tools': [
		//...,
		'webSpellChecker',
		//...
	],
	//...
},
//...

API Configuration

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'
},
//...
  • No labels