When a user hits the Enter key while using TinyMCE, it doesn't add a new line, it adds a new paragraph. Can I change this behavior and force it only to add a line break <br />
instead of a new paragraph?
Oops the answer's right here: https://www.tinymce.com/docs/configure/content-filtering/#forced_root_block
tinyMCE.init({
...
forced_root_block : 'p'
});