Whenever I use ckeditor, I find that pressing enter results in two <br />
tags being inserted. While I want to keep the line break tags, having them appear twice is not ideal.
In my config.js file, I have set the configuration for the enter key as follows:
config.enterMode = CKEDITOR.ENTER_BR;
Is there a way to ensure that CKEditor only inserts it once?
EDIT: Currently, I am resolving this issue by using the css line-height property. However, I would appreciate a more elegant solution if available.