使用enter按键强制输入换行符而不是创建新段落

时间:2013-01-20 10:37:37

标签: jquery tinymce keypress line-breaks paragraph

当用户在使用TinyMCE时按Enter键时,它不会添加新行,而是添加一个新段落。我是否可以更改此行为并强制它仅添加换行符<br />而不是新段落?

1 个答案:

答案 0 :(得分:3)

忽略答案的正确herehttps://www.tinymce.com/docs/configure/content-filtering/#forced_root_block

tinyMCE.init({
    ...
    forced_root_block : 'p'
});