如何将 Wiris 插件添加到 CKEditor?
How to add Wiris plugin to CKEditor?
我有一个 Rails 集成了 CKEditor 的应用程序。
我无法将 Wiris 插件集成到其中
我的 config.js
看起来像这样:
CKEDITOR.editorConfig = function( config ) {
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' }
];
config.removeButtons = 'Underline,Subscript,Superscript';
config.format_tags = 'p;h1;h2;h3;pre';
config.removeDialogTabs = 'image:advanced;link:advanced';
};
我已经从 here 下载了 Wiris 插件并将其复制到 app/assets/javascripts/ckeditor/plugins
我尝试在 config.js
文件中添加:
CKEDITOR.editorConfig = function( config )
{
config.extraPlugins += (config.extraPlugins.length == 0 ? '' : ',') + 'ckeditor_wiris';
config.toolbar_Full.push({ name: 'wiris',
items : [ 'ckeditor_wiris_formulaEditor', 'ckeditor_wiris_CAS' ]});
};
但似乎没有任何效果。
任何帮助将不胜感激!
WIRIS 现在可用于 Rails 的 Ruby!您可以在 http://www.wiris.com/plugins/demo/ckeditor/ruby/ 查看 CKeditor 演示。您将在演示页面上找到指向下载和文档的链接。
我们的 Ruby on Rails 插件也可用于 TinyMCE 和通用 HTML 编辑器。
我有一个 Rails 集成了 CKEditor 的应用程序。
我无法将 Wiris 插件集成到其中
我的 config.js
看起来像这样:
CKEDITOR.editorConfig = function( config ) {
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' }
];
config.removeButtons = 'Underline,Subscript,Superscript';
config.format_tags = 'p;h1;h2;h3;pre';
config.removeDialogTabs = 'image:advanced;link:advanced';
};
我已经从 here 下载了 Wiris 插件并将其复制到 app/assets/javascripts/ckeditor/plugins
我尝试在 config.js
文件中添加:
CKEDITOR.editorConfig = function( config )
{
config.extraPlugins += (config.extraPlugins.length == 0 ? '' : ',') + 'ckeditor_wiris';
config.toolbar_Full.push({ name: 'wiris',
items : [ 'ckeditor_wiris_formulaEditor', 'ckeditor_wiris_CAS' ]});
};
但似乎没有任何效果。
任何帮助将不胜感激!
WIRIS 现在可用于 Rails 的 Ruby!您可以在 http://www.wiris.com/plugins/demo/ckeditor/ruby/ 查看 CKeditor 演示。您将在演示页面上找到指向下载和文档的链接。 我们的 Ruby on Rails 插件也可用于 TinyMCE 和通用 HTML 编辑器。