CKEditor does this whenever I add a heading tag:
<h2>
Mai 2010</h2>
How can I remove the new line and spaces after the h2 starting tag, please?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is the default CKEDITOR behavior for a lot of tag.
To avoid it, open the ckeditor.js file and search for this:
n.setRules(‘title’,{indent:false,breakAfterOpen:false});
and add this rule:
n.setRules(‘h2’,{indent:false,breakAfterOpen:false});
You can add this rule for each tag you want