在哪里可以看到 CDN 中 CKEditor 插件的完整列表?
Where to see full list of CKEditor plugins in CDN?
我从 CDN 将 CKEditor 源代码包含到我的应用程序中(参见 CKEditor CDN docs)
<script src="//cdn.ckeditor.com/4.13.0/standard-all/ckeditor.js"></script>
我想添加一些外部插件
CKEDITOR.editorConfig = function (config) {
config.extraPlugins = 'divarea,confighelper';
}
CKEditor 还从 CDN 加载 divarea
插件。但是 CDN 中似乎缺少 confighelper
插件,CKEditor 抱怨:
Uncaught Error: [CKEDITOR.resourceManager.load] Resource name "confighelper" was not found at "http://cdn.ckeditor.com/4.13.0/standard-all/plugins/confighelper/plugin.js?t=42..."
所以我需要从 CKEditor plugins page 下载它的源代码并将其解压缩到我的应用程序中。如果能看看 CDN 中有哪些插件可用,那就太好了。
我试图查看 CDN's plugins directory,但资源响应为 Forbidden
如何查看 CDN 中可用的 CKEditor 插件的完整列表?
The following table illustrates plugins provided by CKEditor
distributions, available in CKEditor CDN and the CKEditor releases
repository.
我从 CDN 将 CKEditor 源代码包含到我的应用程序中(参见 CKEditor CDN docs)
<script src="//cdn.ckeditor.com/4.13.0/standard-all/ckeditor.js"></script>
我想添加一些外部插件
CKEDITOR.editorConfig = function (config) {
config.extraPlugins = 'divarea,confighelper';
}
CKEditor 还从 CDN 加载 divarea
插件。但是 CDN 中似乎缺少 confighelper
插件,CKEditor 抱怨:
Uncaught Error: [CKEDITOR.resourceManager.load] Resource name "confighelper" was not found at "http://cdn.ckeditor.com/4.13.0/standard-all/plugins/confighelper/plugin.js?t=42..."
所以我需要从 CKEditor plugins page 下载它的源代码并将其解压缩到我的应用程序中。如果能看看 CDN 中有哪些插件可用,那就太好了。 我试图查看 CDN's plugins directory,但资源响应为 Forbidden
如何查看 CDN 中可用的 CKEditor 插件的完整列表?
The following table illustrates plugins provided by CKEditor distributions, available in CKEditor CDN and the CKEditor releases repository.