...
| Code Block |
|---|
| language | js |
|---|
| theme | Emacs |
|---|
| title | configuration.js |
|---|
|
// 플러그인 설정에 "tuiImageEditor" 추가
"editor.plugins": [{
name: "tuiImageEditor",
position: {
imageBalloon: -1 // 이미지 벌룬의 -1 위치에 버튼 추가
}
}] |
5.2 WebSpellChecker 맞춤법 검사도구 적용
package 하위 plugins webSpellChecker script file 사용
맞춤법검사 도구를 적용하면 에디터내의 컨텐츠를 맞춤법을 검사하고 수정 할 수 있습니다.
| Code Block |
|---|
|
<!-- webSpellChcker -->
<!-- 에디터 스크립트 아래에 추가 -->
<script type="text/javascript" src="../plugins/webSpellChecker/webSpellChecker.js"></script> |
| Code Block |
|---|
| language | js |
|---|
| theme | Emacs |
|---|
| title | synapeditor.config.js |
|---|
|
// 플러그인 설정에 "webSpellChecker" 추가
"editor.plugins": [{
name: "webSpellChecker",
position: {
imageBalloon: -1 // 이미지 벌룬의 -1 위치에 버튼 추가
}
}] |
6. 임포트 및 업로드 API 설정
환경설정 파일에 임포트 및 업로드 API 경로를 등록합니다.
...