자바스크립트 텍스트 에디터 - Quill 라이브러리 테마 정리

yuzu sim's avatar
Sep 11, 2024
자바스크립트 텍스트 에디터 - Quill 라이브러리 테마 정리

1. snow - 기본적이고 깔끔

notion image
 

2. bubble

notion image
 

3. 프젝에 snow 테마 넣고 화면 확인

  • CDN 스크립트랑 링크 걸고 테마 스크립트 코드 넣기
notion image
<script src="https://cdn.jsdelivr.net/npm/quill@2.0.2/dist/quill.js"></script> <link href="https://cdn.jsdelivr.net/npm/quill@2.0.2/dist/quill.snow.css" rel="stylesheet"> <div id="editor"> <h2>Demo Content</h2> <p>Preset build with <code>snow</code> theme, and some common formats.</p> </div> <script> const quill = new Quill('#editor', { theme: 'snow' // 해당 부분을 변경하면 됨 }); </script>
 
Share article

Coding_study