Page tree

Versions Compared

Key

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

...

Code Block
languagejs
themeEmacs
titleconfiguration.js
// 플러그인 설정에 "tuiImageEditor" 추가
"editor.plugins": [{
    name: "tuiImageEditor",
    position: {
        imageBalloon: -1 // 이미지 벌룬의 -1 위치에 버튼 추가
    }
}]


5.2 WebSpellChecker 맞춤법 검사도구 적용

Status
title릴리즈 2.4.0 이상

package 하위 plugins webSpellChecker script file 사용


맞춤법검사 도구를 적용하면 에디터내의 컨텐츠를 맞춤법을 검사하고 수정 할 수 있습니다.

Code Block
languagexml
themeEmacs
<!-- webSpellChcker -->
<!-- 에디터 스크립트 아래에 추가 -->
<script type="text/javascript" src="../plugins/webSpellChecker/webSpellChecker.js"></script>


Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
// 플러그인 설정에 "webSpellChecker" 추가
"editor.plugins": [{
    name: "webSpellChecker",
    position: {
        imageBalloon: -1 // 이미지 벌룬의 -1 위치에 버튼 추가
    }
}]

6. 임포트 및 업로드 API 설정

환경설정 파일에 임포트 및 업로드 API 경로를 등록합니다.

...