gpt4 book ai didi

javascript - ckeditor自定义模板配置

转载 作者:行者123 更新时间:2023-11-29 20:06:55 28 4
gpt4 key购买 nike

我为 ckeditor 声明配置如下:

var ckconfig  = {
uiColor: '#ffffff',
stylesCombo_stylesSet: [],
format_tags: "p;h2;h3;h4;div",
contentsCss : '/js/admin/editorstyles/default.css',
extraPlugins : 'stylesheetparser',
scayt_autoStartup:true,
toolbar_Full: [['Templates','Styles','Format','FontSize','TextColor', 'Bold', 'Italic', 'Underline','-', 'NumberedList', 'BulletedList','-','Scayt','PasteText'],
['Image','Link', 'Unlink'], ['Undo', 'Redo'],['Source', 'Maximize', 'ShowBlocks']]
}

并启动为

$('textarea#b_description').ckeditor(ckconfig);

这没问题,但我如何使用这种表示法添加自定义模板文件?

最佳答案

如果您进入 ckeditor/plugins/templates/templates/default.js(基于版本 3.6.2 的文件结构),您将看到模板的定义。

使用此页面作为指南 -- http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Templates -- 您应该能够完成创建新模板所需的一切。

您可以使用以下符号声明要在 config.js 文件中使用的模板文件的显式列表:

config.templates_files = [ '/mytemplates.js' ];

对于您的特定符号,该行将是:

templates_files: [ '/mytemplates1.js', '/mytemplates2.js' ]

关于javascript - ckeditor自定义模板配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11629393/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com