[에디터] CKeditor4.x 글 작성시 스페이스 공란이 로 자동으로 변경되는 문제 해결
페이지 정보
루루아빠
3,335 1
2016.11.06 11:45:31
짧은주소
-
https://yadolee.com/tip/446 주소복사
본문
그누보드5/plugin/editor/CKeditor4.x 폴더명/config.js 를 열어 최하단 }; 위쪽에 다음 소스를 삽입한다.
CKEDITOR.plugins.add('removeRedundantNBSP', {
afterInit: function(editor) {
var config = editor.config,
dataProcessor = editor.dataProcessor,
htmlFilter = dataProcessor && dataProcessor.htmlFilter;
if (htmlFilter) {
htmlFilter.addRules({
text: function(text) {
return text.replace(/(\w) /g, '$1 ');
}
}, {
applyToAll: true,
excludeNestedEditable: true
});
}
}
});
상기 소스로 인해 게시판 디자인/양식 내용관리에서 에디터가 하나만 구동되는 문제가 있어 적용해선 안될 내용이다.
추천인 1
레벨 101
경험치 1,519,440
Progress Bar 14.66%
- 가입일 : 2015-03-04 03:24:54
- 서명 : KNOW YOUR LIMITS
BUT NEVER STOP TRYING TO EXCEED THEM !!
- 자기소개 : 루루의 자랑
루루아빠랍니다~~
최신댓글이 없습니다.


댓글
첫 번째 댓글을 남겨 주세요