当用户在使用 TinyMCE 时按下 Enter 键时,它不会添加新行,而是添加新段落。我可以更改此行为并强制它仅添加换行符
<br />
而不是新段落吗?
哎呀,答案是正确的在这里:https://www.tinymce.com/docs/configure/content-filtering/#forced_root_block
tinyMCE.init({
...
forced_root_block : 'p'
});
在 TinyMCE 6.1+ 中,有新选项。之前的选项已废弃。
newline_behavior: 'block',
https://www.tiny.cloud/docs/tinymce/6/content-behavior-options/#newline_behavior https://www.tiny.cloud/docs/tinymce/6/6.1-release-notes/#new-newline_behavior-option-controls-what-happens-when-the-return-or-enter-key-is-按下或使用了 mceinsertnewline 命令
如果您不想更改默认值,那么在编辑器中只需同时按 Shift 和 Enter 键,它就会带您到新行
对于 7+ 版本: newline_behavior: '换行'