tinyMCE にいくつかのカスタム タグを追加する必要があります。body タグだけなら問題ないのですが、div タグに入れるとエディターで削除されてしまいます。次に例を示します。
「unsubthis」タグを追加する必要があるため、この構成ファイルを取得しました
<script type="text/javascript">
tinyMCE.init({
mode: "textareas",
verify_html : false,
skin: "o2k7",
theme: "advanced",
entity_encoding: "raw",
plugins: "fullpage,safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
theme_advanced_buttons1: "newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2: "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons3: "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
theme_advanced_buttons4: "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak",
theme_advanced_toolbar_location: "top",
theme_advanced_statusbar_location: "bottom",
theme_advanced_toolbar_align: "left",
custom_elements: "unsubthis",
valid_children: "+div[unsubthis]",
extended_valid_elements: "unsubthis"
});
エディターを開いて HTML に入力すると、
<html>
<head>
<title>Document Title 1</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<unsubthis></unsubthis>
</body>
</html>
更新すると、すべて問題なく、HTML を調べると、コードは同じように見えます。これをHTMLに入れようとすると問題が発生します:
<html>
<head>
<title>Document Title 1</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<div>
<unsubthis></unsubthis>
</div>
</body>
</html>
次に、更新後に unsubthis が削除され、このコードが取得されます
<html>
<head>
<title>Document Title 1</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<div></div>
</body>
</html>
unsubthis タグが空の場合にのみ問題が発生します。どうすれば修正できますか?
現在、3.5.6 バージョンを使用しています。