ckeditor代码片段addon rails cdn

时间:2015-03-16 03:04:26

标签: ruby-on-rails ckeditor cdn

我试图将ckeditor与代码段一起使用。最简单的方法是使用CDN并将其作为脚本标记包含在内。但默认的ck编辑器没有代码片段插件。如果我下载包含代码片段的自定义程序包,那么我必须修改所有文件以使用Rails资产管道,我不想这样做。

我如何免费提供自己的文件或CDN,或者找到一些其他低成本的方法来合并ckeditor自定义包,而无需" railsify"它?

2 个答案:

答案 0 :(得分:1)

您仍然可以使用CKEditor官方CDN,但使用全部版本,其中包括所有官方CKEditor插件。

<script src="//cdn.ckeditor.com/4.4.7/full-all/ckeditor.js"></script>

你很高兴。不要忘记加载此插件,例如使用config.extraPlugins。像这样:

CKEDITOR.replace( 'editor1', {
    extraPlugins: 'codesnippet'
} );

答案 1 :(得分:0)

安装其他插件gem'ckeditor'代码片段

//adding app/assets/javascripts/ckeditor/plugins/codesnippet
//app/assets/javascripts/ckeditor/config.js
CKEDITOR.editorConfig = function (config) {
  config.extraPlugins = 'codesnippet';
}

Jersey does provide some recommendations to work around the limitations of latency

https://github.com/galetahub/ckeditor#install-additional-plugins

https://ckeditor.com/cke4/addon/codesnippetgeshi

https://ckeditor.com/cke4/addon/codesnippet

https://ckeditor.com/cke4/addon/ajax