I am using TinyMCE to provide a rich text editing text editor. But the line spacing between the lines is too much. I have added a screenshot that shows the line spacing I get on
I know, This post is old, but it may help someone.
'force_br_newlines' and 'force_p_newlines' are deprecated as of 3.5.
Use forced_root_blocks instead:
tinyMCE.init({ ... force_br_newlines : true, force_p_newlines : false, forced_root_block : '' // Needed for 3.x });