2012-07-05 4 views
2

TinyMCE 랩 텍스트 필드에 간단한 이미지 링크를 삽입하려하지만 내 마크 업을 모두 제거하고 있습니다.TinyMCE 스트립 아웃 모든 마크 업

<a class="video-launcher lightbox-video-launcher" href="http://www.youtube.com/watch?v=blah" ><span class="video-launcher-bg"></span><span class="video-launcher-button"></span></a> 

내 tinymce_config_url_init.html은 다음과 같습니다 :처럼 내 마크 업이 보이는

{ 
    "theme_advanced_toolbar_align":"left", 
    "content_css":"/media/css/cms_tinymce.css,/media/css/cms_tinymce_admin.css", 
    "theme_advanced_blockformats":"p,h2,h3,div,customformat", 
    "theme_advanced_statusbar_location":"bottom", 
    "theme_advanced_path":false, 
    "plugins":"fullscreen,paste", 
    "valid_elements":"*[*]", 
    "media_strict":false, 
    "paste_auto_cleanup_on_paste":true, 
    "theme_advanced_styles":"Header 1=header1;Header 2=header2;Header 3=header3;Table Row=tableRow1", 
    "width":"680", 
    "theme":"advanced", 
    "theme_advanced_font_sizes":"8px,10px,12px,14px,16px,18px,20px,24px,36px", 
    "theme_advanced_resizing":true, 
    "height":"300", 
    "relative_urls":false, 
    "theme_advanced_toolbar_location":"top", 
    "inline_styles":true, 
    "language":"en", 
    "theme_advanced_buttons1":"fullscreen,|,undo,redo,|,bullist,numlist,|,anchor,link,unlink,charmap,|,code,|,justifyleft,justifycenter,justifyright,|,image,", 
    "theme_advanced_buttons3":"", 
    "theme_advanced_buttons2":"removeformat,styleselect,formatselect,fontselect,fontsizeselect,|,bold,italic,underline,|,forecolor,backcolor", 
    "removeformat_selector":"span,div,p,h1,h2,h3" 
} 

나는 문제는 양식을 제출, 그냥 다시 "HTML"버튼을 클릭하지 않고, TinyMCE에 함께 알고, TinyMCE의 팝업에는 내용이 표시되지 않습니다.

나는 TinyMCE가 안전하지 않거나 무효하다고 생각하는 것을 제거했다고 가정하고 있습니다. 내 앱의 경우 관리 섹션에서 사용되므로 콘텐츠를 신뢰할 수 있습니다. 이 마크 업을 제거하는 TinyMCE 구성을 어떻게 해제합니까?

답변

0

"content_css" 변수에 웹 사이트의 CSS 스타일 시트를 추가 하시겠습니까?

또한 "paste_auto_cleanup_on_paste"을 false로 설정하십시오.

+0

아니요,이 영향이 없습니다. – Cerin

0

tinymce 구성 매개 변수를 자세히 살펴 봐야합니다. valid_elements. 필요에 맞게 설정하고 유효한 요소와 속성을 정의해야합니다.

+0

'valid_elements'를 사용했습니다 : "+ * [*]"하지만 Django- *가 원하는 HTML 코드를 제거한다고 생각합니다. 아이디어? – Daviddd

+0

버그로 인해이 설정이 작동하지 않습니다. – Thariama