Hi all and sorry for my bad english.
I´m testing this great software and I find a problem. I´m writing some lessons about html using this editor and the html tags disapears after send the document. It means, I write some thing like this:
" the <html> tag is used for...."
and the result I have is:
"the tag is used for..."
Can you please give me a way to solve this "problem"? I think this is a way to avoid add html code to our documents but.. I need it. In any case the thing I want to obtain es something like "<html>" when I write for example "<html>".
Can you please help me?
Thankyou in advance!
I´m testing this great software and I find a problem. I´m writing some lessons about html using this editor and the html tags disapears after send the document. It means, I write some thing like this:
" the <html> tag is used for...."
and the result I have is:
"the tag is used for..."
Can you please give me a way to solve this "problem"? I think this is a way to avoid add html code to our documents but.. I need it. In any case the thing I want to obtain es something like "<html>" when I write for example "<html>".
Can you please help me?
Thankyou in advance!
Re: Html code is missing after write it.
The problem is that by default, ckeditor is not set to make full html pages and so it removes tags like <html> and <body>. Making this change is your config file will allow you to use the <html> tag.
Re: Html code is missing after write it.
in the area where you call ckeditor.
var editor = CKEDITOR.replace( 'editor',
{
fullPage: true
} );
Re: Html code is missing after write it.