我正在使用带有 TinyMCE 的 BBCode 插件,发现预览和 HTML 代码之间的换行符不一样。
我在编辑器窗口中有以下几行:
This is line one
This is line three
第二行是空的。当我在 HTML 中查看它时,我得到以下信息。
This is line one
This is line three
没有额外的空行。
tinyMCE.init({
mode : "textareas",
theme : "advanced",
plugins : "bbcode",
entity_encoding : "raw",
remove_linebreaks : false,
force_p_newlines : false,
force_br_newlines : true,
forced_root_block : ''
});
我错过了什么?