Opened 12 years ago
Last modified 12 years ago
#9984 confirmed Bug
Blockquote with enterMode = ckeditor.ENTER_BR and autoParagraph = false creates <p> tags — at Initial Version
Reported by: | Juan Pablo | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 4.0 Beta |
Keywords: | Cc: |
Description
Using CKEDITOR 4 with <br /> for new lines instead of paragraphs doesn't work for Blockquote as it uses <p> tags with that tool.
This is my configuration:
Use <br /> instead of <p> tags. CKEDITOR.config.enterMode = CKEDITOR.ENTER_BR; CKEDITOR.config.autoParagraph = false;
This is what I'm seeing in the editor:
<body contenteditable="true" class="cke_editable cke_editable_themed cke_contents_ltr" spellcheck="false"> Test text <blockquote> <p>A blockquote</p> </blockquote> <p> More lines<br> Another line<br><br> </p> </body>