반응형
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>
반응형
댓글