Search code examples
phpckeditorphpbb

How do disable auto add <br> end of every element in CKEditor?


I am using ckeditor in phpbb. when adding content in my post page. I am getting break tag between every line which look my page content odd.how can we disable the <br/> tag in ckeditor ?

updated my question

i have given CKEDITOR.ENTER_P in config.js

CKEDITOR.editorConfig = function( config )
{
    // Define changes to default configuration here. For example:

    config.enterMode = CKEDITOR.ENTER_P;
    config.toolbar_Basic =
[
    ['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink','-','About']
];

};

Solution

  • I think, break tag is standard mechanism for enters. If you wan't to remove it, try clean your content before save to database str_replace('
    ', '', $content);