Quotes surrounding tag attributes are delimited by a backslash and the attribute is not seen by the browser.
Can I turn this feature off?
Example below:
<span style=\"color:#ff0000;\"><span style=\"background-color:#ffff00;\">His cook put the worms on the barby.</span></span>
Every time the file is loaded, more back slash characters are added.
See the source code after the edit tag in this page:
http://www.ngunn.net/seniorcenter/activities.php
It's totally messed up.
Wed, 07/27/2011 - 14:48
#1
Re: delimited quotes
If you insert this in Source view, switch to WYSIWYG and back, the issue that you described does not occur.
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: delimited quotes
I assumed it was a configuration issue but unfortunately the Demo page doesn't reveal the editor's configuration.
Here's my config... what have I missed.
<form method="post" action="savetext.php">
<p>
My Editor:<br />
<textarea name="editor1"><?php $top=file_get_contents("notices.txt"); echo "$top" ; ?></textarea>
<script type="text/javascript">
CKEDITOR.replace( 'editor1',
{
toolbar : [ ['Format','FontSize','Bold','Italic','Underline','TextColor','BGColor','Cut','Copy','Paste','PasteText','JustifyLeft'
,'JustifyRight','JustifyCenter','JustifyBlock','HorizontalRule','NumberedList','BulletedList','SpellChecker','Table'
,'Print','Link','-','Source','About']]
}
);
</script>
</p>
<p>
<input type="submit" value="Send"/>
</p>
</form>