Hi all,
I am trying to set the instance of the ckeditor to follow the html 4 strict doctype.
this is how i initiate the editor:
CKEDITOR.replace('pageContent',{docType : '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">' });
I even did a small test and made sure the instance is working with this setting.
The thing is, still when I press Ctrl+Enter, CKEditor inserts a <br /> instead of a <br>, which is not a valid tag.
Why is that and how can I fix this?
Thanks,
Amos