Page tree

Versions Compared

Key

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

...

Status
colourYellow
title릴리즈 2.4.0 이상

webspellchecker.com에서 제공하는 API를 이용한 맞춤법 검사 플러그인입니다. 

해당 플러그인을 사용하기 위해서는 webspellchecker.com에서 라이센스를 구매해야 합니다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

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

UI

플러그인 이름인 You may add the button to toolbar and menu with 'webSpellChecker'를 사용하여 툴바 영역, 메뉴 영역에 버튼을 추가할 수 있습니다.

...

, the name of the plugin.

Adding to Toolbar

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

...

Adding to Menu

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

API

...

Configuration

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

Code Block
languagejs
themeEmacs
title에디터 설정
//...
'webSpellChecker.config: {
	'url': 'http://svc.webspellchecker.net/spellcheck31/script/ssrv.fcgi',
	'customid': '라이센스Key you 구매received after 발급purchasing 받은the keylicense',
	'defaultLanguage': '맞춤법 검사 대상 언어Target Language'
},
//...