본문 바로가기
728x90

분류 전체보기122

ckeditor html 태그 허용 ckeditor5 에서 허용태그 세팅방법은 아래 사이트를 참조 https://ckeditor.com/docs/ckeditor5/latest/features/general-html-support.html General HTML Support | CKEditor 5 DocumentationLearn 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.querySele.. 2024. 8. 5.
ckeditor mediaEmbed 카카오tv 처리 ckeditor5 media embed 에서 카카오tv 주소를 넣었을 경우 글에 삽입되도록 처리하는 방법이다. ​주소형식 2가지를 받아 iframe 형식으로 만들어 리턴해주는 설정이다​ClassicEditor.create( document.querySelector( '#ckeditor' ), { toolbar: {items : ['mediaEmbed'], shouldNotGroupWhenFull: true,},mediaEmbed: {previewsInData: true,providers: [{name: 'kakaotv',url: [/^tv\.kakao\.com\/v\/([\w-]+)/, /^tv\.kakao\.com\/channel\/[^/]+\/cliplink\/(\d+)/],html: match =>.. 2024. 8. 5.
ckeditor5 - toolbar 세팅 ckeditor5의 툴바에 원하는 메뉴를 세팅하고 싶다면 ​먼저 홈페이지에 들어가 원하는 기능을 세팅하여 빌드하여 다운로드 하여야한다.​주소는 아래와 같은데 진행은 어렵지 않다. 원하는 기능들을 선택 후 쭉~ 진행하고​다운로드 받으면된다. 물론 유료기능들은 돈을 지불해야한다. ​이렇게 빌드하지 않고 기본 버전에 기능을 넣으면 지원하지 않는 기능이라고 나온다. https://ckeditor.com/ckeditor-5/online-builder/ CKEditor 5 BuilderCreate and customize your online editor with CKEditor 5 Builder. Choose features, set up your editor, and see changes in real-time.. 2024. 8. 5.
[HTML] 버튼 정렬하기 버튼을 오른쪽 정렬하고 싶은 경우 아래와 같이 처리​1.​2. 2024. 8. 5.
한글 문자열 자르기 - 파이썬 한글 문자열을 원하는 길이만큼 잘라서 배열로 리턴하는 함수를 만들어봤다.​def splitString(text, length=10): return [text[i:i+length] for i in range(0, len(text), length)]​#사용법temp = "국내 정상급 가수들의 공연·불꽃쇼 등 볼거리 가득 나흘간 카약·요트 등 무료 해상 스포츠 체험 제공 워터슬라이드·에어바운스 갖춘 수상 워터파크 운영"result = splitString(temp, 10)print(result) 2024. 7. 31.
한글 로그문제 해결 - django django 에서 로그를 쌓는데 한글이 있을 경우 쌓이지 않는 문제가 발생했다. 테스트 할때는 보통 프로그래머가 그렇듯이 영문으로만 테스트하니 모르고 있었다. ㅡㅡ; 급하게 구글링 결과 encoding을 설정해주면 된다.  settings.py 의 LOGGING.handlers 에서 아래와 같이 추가 'file2': {            'level': 'DEBUG',         'class': 'logging.FileHandler',            'filename': BASE_DIR / f'logs/test.log', 'formatter': 'format_basic',            'encoding' : 'utf-8' }, 2024. 7. 31.
반응형