I downloaded CKEDITOR from here (chose Standard Package):

https://ckeditor.com/ckeditor-4/download/ 

The configuration, did not change anything at all. I have a textarea, in value, it has this line:

 <p>hello how low? &lt;script&gt;console.log('alert')&lt;/script&gt;</p> 

I initialize CKEditor on this textarea. When loading instead of textarea I see CKEditor (as it should be). But in its meaning only this:

 hello how low? 

But the &lt;script&gt;console.log('alert')&lt;/script&gt; Nope I tried to replace the script with a div. And the line was displayed (but without tags - just its contents). How can I make the line with the script displayed and displayed in full?

    0