...
| Code Block |
|---|
| language | js |
|---|
| theme | Emacs |
|---|
| title | 에디터 설정 |
|---|
|
//...
'editor.menu.definition': {
//...,
'tools': [
//...,
'webSpellChecker',
//...
],
//...
},
//... |
API 설정
에디터 설정 객체에 Webspellchecker API를 사용하기 위한 값들을 설정해야 합니다.
| Code Block |
|---|
| language | js |
|---|
| theme | Emacs |
|---|
| title | 에디터 설정 |
|---|
|
//...
'webSpellChecker.config': {
'url': 'httphttps://svc.webspellchecker.net/spellcheck31/script/ssrv.fcgiapi',
'customidcustomerid': '라이센스 구매 후 발급 받은 key',
'defaultLanguage': '맞춤법 검사 대상 언어'
},
//... |
부산대학교(나라인포) 맞춤법 검사 사용방법
| Status |
|---|
| colour | Yellow |
|---|
| title | 릴리즈 2.17.0 이상 |
|---|
|
API 설정
에디터 설정 객체에 부산대학교(나라인포) 맞춤법 검사 API를 사용하기 위한 값들을 설정해야 합니다.
| Code Block |
|---|
| language | js |
|---|
| theme | Emacs |
|---|
| title | 에디터 설정 |
|---|
|
//...
'webSpellChecker.config': {
'url': API URL,
'useSpellCheckerPusan': true
},
//... |