Decrease the line spacing in TinyMCE textarea

前端 未结 7 2065
时光取名叫无心
时光取名叫无心 2021-02-05 13:03

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

7条回答
  •  情话喂你
    2021-02-05 13:29

    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
    });
    

提交回复
热议问题