我已经将TinyMCE设置为在BBcode中写入所有内容,该内容适用于除列表项之外的所有内容。 TinyMCE推出:
<ul>
<li> text </li>
</ul>
但应该是:
[list]
[*]text
[/list]
我使用TinyMCE版本4.0b3。
我的TinyMCE代码:
tinyMCE.init({
theme : "modern",
mode : "exact",
elements : "use",
plugins : "link image searchreplace fullscreen textcolor insertdatetime charmap hr nonbreaking anchor table preview bbcode",
toolbar1 : "undo redo | styleselect | bold italic underline link | alignleft aligncenter alignright alignjustify | bullist numlist | outdent indent",
toolbar2 : "image table | forecolor backcolor | fontsizeselect" ,
toolbar3 : "searchreplace | fullscreen | charmap",
content_css : "style.css",
entity_encoding : "raw",
relative_urls : false,
remove_script_host : false,
convert_urls : true,
nonbreaking_force_tab: true,
});