CkEditor模板更改不会生效

时间:2014-06-18 05:07:34

标签: ckeditor

我下载了ckeditor,解压缩,安装了所有这些东西。它工作正常,但我无法更改/plugins/templates/templates/default.js中的模板。我甚至删除了它们,没有工作。

这是我改变模板的方式吗? (我在这里绝望)

请帮助!

3 个答案:

答案 0 :(得分:0)

尝试检查文档 http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-templates_files

config.templates = 'my_templates';
config.templates_files = [
    '/editor_templates/site_default.js',
    'http://www.example.com/user_templates.js
];

答案 1 :(得分:0)

清除浏览器缓存肯定有效。

转到 /vendors/ckeditor/plugins/templates/templates/default.js

确保将每个HTML标记和任何文本放在两个逗号之间,并在结尾逗号的末尾加上加号。

仅供参考 - 非常 HTML标记后,加号应

=========================

示例:

https://github.com/ckeditor/ckeditor-dev/blob/master/plugins/templates/templates/default.js

答案 2 :(得分:0)

如何在CKEditor中创建自己的自定义HTML模板。

我成功创建了自己的自定义样式模板,在CKEditor中有自己的图形区域。

=========================

在CKEditor文件夹中打开在...

中找到的Default JS文件

/ckeditor/plugins/templates/templates/default.js

=========================

确保将每个HTML标记和每行文本放在两(2)个逗号之间,并在每个结尾逗号的末尾加上加号。

仅供参考 - 加号不应该出现在非常标记的HTML标签之后。

=========================

代码示例:

                    '<span style="font-size:18px">'+
                    '<strong>'+
                    '<span style="color:#003366">'+
                    '<span style="font-family:Arial,Helvetica,sans-serif">'+
                    'Here is some sample text'+
                    '</span>'+
                    '</span>'+
                    '</strong>'+
                    '</span>'

========================

在线示例:

https://github.com/ckeditor/ckeditor-dev/blob/master/plugins/templates/templates/default.js

=========================

如果您未在CKEditor的前端WYSIWYG中看到任何更改,请尝试清除浏览器的缓存。