Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Status
colourYellow
title릴리즈 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.

Image Removed

How to Use

Loading Plugin File

Code Block
languagexml
themeEmacs
<link rel="stylesheet" href="URL of webSpellChecker.min.css의 urlcss">
<script src="URL of webSpellChecker.min.js의 urljs"></script>

UI

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

...

Code Block
languagejs
themeEmacs
title에디터 설정Editor Configuration
//...
'editor.toolbar': [
	//...,
	'webSpellChecker',
	//...
],
// ...

...

Code Block
languagejs
themeEmacs
title에디터 설정Editor Configuration
//...
'editor.menu.definition': {
	//...,
	'tools': [
		//...,
		'webSpellChecker',
		//...
	],
	//...
},
//...

...

Code Block
languagejs
themeEmacs
title에디터 설정Editor Configuration
//...
'webSpellChecker.config: {
	'url': 'http://svc.webspellchecker.net/spellcheck31/script/ssrv.fcgi',
	'customid': 'Key you received after purchasing the license',
	'defaultLanguage': 'Target Language'
},
//...

...