ckeditor5 툴바의 일부가 보이지 않는것은 왜 그런가요?
본문
<script>
ClassicEditor.create( document.querySelector('#{$id}'), {
language: 'ko',
toolbar: {
items: [
'fontfamily', 'fontsize', '|',
'alignment', '|',
'fontColor', 'fontBackgroundColor', '|',
'bold', 'italic', 'strikethrough', 'underline', 'subscript', 'superscript', '|',
'link', '|',
'outdent', 'indent', '|',
'bulletedList', 'numberedList', 'todoList', '|',
'code', 'codeBlock', '|',
'insertTable', '|',
'uploadImage', 'blockQuote', '|',
'undo', 'redo'
],
shouldNotGroupWhenFull: true
},
extraPlugins: [CKEditorUploadAdapterPlugin]
}).then(newEditor=>{{$id}_editor=newEditor }).catch(error=>{console.error(error); });
</script>
위처럼 아이템 배열에는 있는데도 아래 툴은 보이지 않는데 이유가 뭘까요?
'fontfamily', 'fontsize', '|',
'alignment', '|',
'fontColor', 'fontBackgroundColor', '|',
답변 1
https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/predefined-builds.html#when-not-to-use-predefined-builds
Predefined Build 환경에서 추가되지 않은 Plugin 이 호출되어 발생된 현상은 아닌지 확인이 필요할것 같습니다.
https://ckeditor.com/ckeditor-5/online-builder/
또는 online 빌더로 필요한 Plugin 을 빌드하는 방법이 있는것 같습니다.