Ok also ich habe mir das jetzt mehrfach durchgelesen und auch das Eine oder Andere probiert. Ohne Erfolg, die iframe-Tags werden einfach nicht ersetzt.
Oder ich habe einen anderen Fehler drin, ich weiß es nicht.
Nebenbei ist mir ein weiteres Problem aufgefallen. Für "durchgestrichen" wird das
<strike>
-Tag bei Klick auf Quellcode gar nicht in den Editor eingefügt.
Kennt jemand dieses Problem?
Meine config.js vom Editor:
/**
* @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config ) {
// Define changes to default configuration here.
// For complete reference see:
// http://docs.ckeditor.com/#!/api/CKEDITOR.config
// The toolbar groups arrangement, optimized for a single toolbar row.
config.toolbarGroups = [
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] },
{ name: 'forms' },
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
{ name: 'links' },
{ name: 'insert' },
{ name: 'styles' },
{ name: 'colors' },
{ name: 'tools' },
{ name: 'others' },
{ name: 'about' }
];
// The default plugins included in the basic setup define some buttons that
// are not needed in a basic editor. They are removed here.
config.removeButtons = 'Cut,Copy,Paste,Undo,Redo,Anchor,Underline,Subscript,Superscript,Smiley';
// Dialog windows are also simplified.
config.removeDialogTabs = 'link:advanced';
// extra Plugins
config.extraPlugins = 'bbcode';
// config.extraPlugins = 'youtube';
//Enter works as <br>
config.enterMode = CKEDITOR.ENTER_BR;
};
Die richtige Formulierung eines Problems ist nicht selten bereits die halbe Lösung.
»Albert Einstein«