我是一家小型出版物的网站管理员,该出版物使用我们后端系统上的ckeditor来处理帖子格式。到目前为止效果很好。我们正在使用“查看源代码”选项来手动向内容添加一些html标签。它起作用了,但是当我在后端重新打开帖子并单击源时,我注意到它正在剥离标签。在找出原因的过程中,我发现编辑器将剥离基本上不属于的代码。我开始进行挖掘,发现位于我的安装中的config.js文件。那就是我在配置中发现config.removeButtons
选项的时候。我注意到它专门删除了我需要的选项...下划线,下标,上标。我有什么想念的吗?看起来应该包含在标准工具栏中。
我试图删除它并保存文件,然后重新加载正在使用该编辑器的网页,但没有任何反应。
这是我的config.js中的数据
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 two toolbar rows.
config.toolbarGroups = [
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] },
{ name: 'links' },
{ name: 'insert' },
{ name: 'forms' },
{ name: 'tools' },
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
{ name: 'others' },
'/',
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
{ name: 'styles' },
{ name: 'colors' },
{ name: 'about' }
];
// Remove some buttons provided by the standard plugins, which are
// not needed in the Standard(s) toolbar.
config.removeButtons = 'Underline,Subscript,Superscript';
// Set the most common block elements.
config.format_tags = 'p;h1;h2;h3;pre';
// Simplify the dialog windows.
config.removeDialogTabs = 'image:advanced;link:advanced';
config.extraPlugins = 'gwuploadmanager';
config.height = 500;
};
在此先感谢您的帮助!
答案 0 :(得分:0)
谢谢格雷格!当然它被缓存了。我不确定它具体保留在哪个缓存中,因为我删除了Cakephp中tmp / models中的故事缓存,并清除了浏览器缓存。但是有效!