我正在使用具有以下设置的小 mce (3.4.7)
forced_root_block: 'p',
force_br_newlines: true,
force_p_newlines: false,
convert_newlines_to_brs: true
例如,当我输入一些很棒的内容时,然后按 Enter 工作,chrome 中产生<p>great<br>work</p>
的输出与在 Firefox 上不起作用的相同设置相同,Firefox 中的输出great<br>work
缺少根块。
我需要做什么才能让 Firefox 呈现根节点?