TinyMCE で BBCode プラグインを使用していますが、プレビューと HTML コードの間で改行が同じように表示されていません。
エディター ウィンドウに次の行があります。
This is line one
This is line three
2 行目は空です。これを 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 : ''
});
私は何が欠けていますか?