Issue: < and > are being changed to < and > when using fullPage:true
Steps To Reproduce:
1) Use the following: <textarea name=et_text><first_name></textarea>
2) Instantiate the CKEditor
3) Nothing is displayed in the editor
4) View source results in the following:
Expected Behavior/Code:
To instantiate the editor, I am using the following code:
Here is my config file:
Steps To Reproduce:
1) Use the following: <textarea name=et_text><first_name></textarea>
2) Instantiate the CKEditor
3) Nothing is displayed in the editor
4) View source results in the following:
<html> <head> <title></title> </head> <body> <first_name></first_name></body> </html>
Expected Behavior/Code:
<html> <head> <title></title> </head> <body> <first_name></body> </html>
To instantiate the editor, I am using the following code:
<script type="text/javascript">
CKEDITOR.replace('et_text',{fullPage: true});
</script>
Here is my config file:
CKEDITOR.editorConfig = function( config )
{
config.removePlugins = 'elementspath';
config.toolbarStartupExpanded = true;
config.width = 750;
config.height = 450;
config.uiColor = '#C6D5F3';
config.toolbar = 'MyToolbar';
config.toolbar_MyToolbar =
[
['Source'],
['Cut','Copy','Paste','PasteText','PasteFromWord','-','SpellChecker', 'Scayt'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
['Link','Image','Table','HorizontalRule','-','SpecialChar','PageBreak'],
['TextColor','BGColor'],
'/',
['Styles','Format','Font','FontSize'],
['Bold','Italic','Underline'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','Outdent','Indent'],
['NumberedList','BulletedList'],
['Maximize']
];
};

Re: Bug?: fullHTML &lt; &gt; not being handled as expect
<textarea name="et_text"><lt;first_name>gt;</textarea>
Re: Bug?: fullHTML &lt; &gt; not being handled as expect
Using ASP I can do this:
will work for the <first_name> value, but not overall because it would also convert any HTML tags.
It appears that my only solution is to double encode any custom tags like <html>. I can write a function to do this, but with over 500 custom tags to check for, this is going to be a major undertaking...and testing for this will be less than fun.
There SHOULD be an option where we can provide a list of tags to not convert.