2012-02-29 3 views
3
여기

는 목록입니다 이 일을 할 수있는 방법이 있습니까?CKEDITOR : <a href="http://www.elizabethcastro.com/html/extras/entities.html" rel="nofollow">http://www.elizabethcastro.com/html/extras/entities.html</a> 내가 하나가 ... 그들 모두를 활성화하거나 그들 모두를 비활성화 할 (< 제외하고> 물론)</p> <p>인가 : 나는 모든 HTML 엔티티를 변환하는 방법은

config.entities_additional = ""이 있지만 저장하려는 모든 엔티티가 쉼표로 구분 된 목록입니다.

엔티티를 완전히 비활성화하고 싶지만 config.entities = false로 설정하고 싶습니다. 아무것도하지 않는다. o.o

@ Cheery의 대답은 편집기가 config.js 파일을 사용하는 상황을 해결합니다.

그러나

,

 CKEDITOR.replace("selected_text_actual", { 
      uiColor: "#F5F5F5", 
      toolbar: "myToolbar", 
      scayt_autoStartup: false, 
      enterMode: CKEDITOR.ENTER_BR, 
      forcePasteAsPlainText: true, 
      forceSimpleAmpersand: true, 
      height: '170px', 
      entities: false, 
      basicEntities: false, 
      entities_greek: false, 
      entities_latin: false, 
      toolbarCanCollapse: false, 
      resize_enabled: false, 
      disableNativeSpellChecker: false, 
      removePlugins: 'elementspath', 
      editingBlock: false}).setData(text_for_editor); 

는 여전히 HTML 엔티티를 가지고있다.

답변

9

세트 모두 false에 :

config.entities = false; 
config.basicEntities = false; 
config.entities_greek = false; 
config.entities_latin = false; 
+0

이 설정 파일을 사용하는 CKeditor 작동합니다. 그러나 인라인을 설정하는 것은 어떨까요? – NullVoxPopuli

+0

@ TheLindyHop이 옵션으로 시작된 CKEditor의 모든 인스턴스에 대해 작동합니다. 방금 해봤는데 효과가있었습니다. 'text_for_editor'의 내용으로 확인하십시오. – Cheery

+0

config에 주석이있는 것이 문제라는 것을 알았습니다. o.o – NullVoxPopuli