본문 바로가기
기타

ckeditor html 태그 허용

by zgabriel 2024. 8. 5.
728x90

ckeditor5 에서 허용태그 세팅방법은 아래 사이트를 참조

 

https://ckeditor.com/docs/ckeditor5/latest/features/general-html-support.html

 

General HTML Support | CKEditor 5 Documentation

Learn how to install, integrate, configure, and develop CKEditor 5. Get to know the CKEditor 5 Framework. Browse through the API documentation and online samples.

ckeditor.com

 

아래는 모든 태그를 허용하는 세팅이다.

ClassicEditor

.create( document.querySelector( '#ckeditor' ), {

htmlSupport: {

allow: [

{

name: /.*/,

attributes: true,

classes: true,

styles: true

}

],

disallow: [ /* HTML features to disallow */ ]

},

}).then(function(editor) {

}).catch( error => { console.log( error ); } );

 

 

반응형

'기타' 카테고리의 다른 글

다중선택 셀렉트박스안에 체크박스 넣기  (1) 2024.08.06
ckeditor5 - 높이설정  (0) 2024.08.05
ckeditor mediaEmbed 카카오tv 처리  (0) 2024.08.05
ckeditor5 - toolbar 세팅  (0) 2024.08.05
[HTML] 버튼 정렬하기  (0) 2024.08.05