본문 바로가기
IT

Html] ckeditor 설정

by 깻잎쌈 2020. 2. 11.
반응형

 

Quick start - CKEditor 5 Documentation

Learn how to install, integrate and configure CKEditor 5 Builds and how to work with CKEditor 5 Framework, customize it, create your own plugins and custom editors, change the UI or even bring your own UI to the editor. API reference and examples included.

ckeditor.com

 <script src="https://cdn.ckeditor.com/ckeditor5/16.0.0/classic/ckeditor.js"></script>
 ...

<textarea id="contents" name="contents" rows="10" cols="80"></textarea>
 <script>
     ClassicEditor
       .create(document.querySelector('#contents'))
       .catch(error => {
           console.error(error);
     });
 </script>

 

반응형

'IT' 카테고리의 다른 글

데이터 시각화1] 차트 만들기 // html  (0) 2020.02.17
Day 16  (0) 2020.02.11
Day14  (0) 2020.02.08
Day13  (0) 2020.02.07
Day12  (0) 2020.02.06

댓글