Opened 10 years ago
Closed 10 years ago
#13115 closed Bug (invalid)
HTML tags displays in version 4.4.4
Reported by: | Chris | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: |
Description
Having HTML tags display in within ckeditor textarea box. Below is my config.js settings. Example:
- Input "<p>Hello </ br></ br>test</p>"
- Save
- Displays as when re-open: "<p><p>Hello </ br></ br>test</p></p>"
config.skin = 'bootstrapck'; config.uiColor = '#EFEFDE';
config.removePlugins = 'elementspath,resize'; config.extraPlugins = 'aspspellcheck'; config.indentOffset = 4; /*config.enterMode = CKEDITOR.ENTER_BR;*/
config.htmlEncodeOutput = true;
config.allowedContent = true; config.toolbar_PRACTICE_1 = [
['Bold', 'Italic', 'Underline', '-', 'NumberedList', 'BulletedList', '-', 'aspspellcheck', 'Font', 'FontSize', 'TextColor', 'BGColor']
];
You encode the output too many times (when saving or loading data). It's not a CKEditor bug.