Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/n37r06u3/django-ckeditor5
CKEditor5 Django集成
https://github.com/n37r06u3/django-ckeditor5
ckeditor5 django
Last synced: about 2 months ago
JSON representation
CKEditor5 Django集成
- Host: GitHub
- URL: https://github.com/n37r06u3/django-ckeditor5
- Owner: n37r06u3
- Created: 2019-03-04T10:26:31.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-18T10:45:36.000Z (almost 6 years ago)
- Last Synced: 2024-11-18T16:05:56.565Z (about 2 months ago)
- Topics: ckeditor5, django
- Language: Python
- Size: 925 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Django CKEditor 5
===# 介绍 #
本项目整合了新版 [CKEditor 5](https://ckeditor.com/ckeditor-5/) 到Django. 老版本[django-ckeditor](https://github.com/django-ckeditor/django-ckeditor) 仍然在使用[CKEditor 4](https://ckeditor.com/ckeditor-4/).根据 [ckeditor.com](https://ckeditor.com/docs/ckeditor5/latest/builds/guides/migrate.html)官方说明,CKEditor 5是一个你没有用过的船新版本。
整体上仍然使用 [django-ckeditor](https://github.com/django-ckeditor/django-ckeditor/tree/master/ckeditor)项目的架构。不同点是:
- `static/ckeditor5` 包含最新的CKEditor 5经典编辑器(版本会随时更新,尽量与官方同步),[CKEditor 5下载](https://ckeditor.com/ckeditor-5/download/).
- 移除了`extraPlugins`,老的一些插件,如代码插入编辑,目前不可以使用,需要其他方案。
- 修改了`static/ckeditor5/ckeditor-init.js`部分代码, 在 `initialiseCKEditor` 方法里:
+ extraPlugins处理方法代码被删除
+ CKEditor 5 使用 `ClassicEditor.create` 来初始化创建编辑器,而不是用4的 `CKEDITOR.replace`# 安装 #
pip install django-ckeditor5升级
pip install django-ckeditor5 -Ugithub
pip install git+https://github.com/n37r06u3/django-ckeditor5# 配置 #
添加app
```
INSTALLED_APPS = [
...
'ckeditor5'
]
```
基础配置
```
CKEDITOR5_CONFIGS = {
'default': {
'toolbar': ["undo", "redo", "bold", "italic", "blockQuote", "imageTextAlternative", "imageUpload", "heading",
"imageStyle:full", "imageStyle:side", "link", "numberedList", "bulletedList"],
'height': '300px',
'width': '100%',
},
}
```
模型定义
```
from ckeditor5.fields import RichTextField
```添加插件
https://www.npmjs.com/package/ckeditor5-code-block# 测试 #
下载源码解压
cd ckeditor5_demopython manage.py migrate
python manage.py createsuperuser
python manage.py runserver
http://127.0.0.1:8000/admin/
# 参考 #
https://github.com/django-ckeditor/django-ckeditorhttps://ckeditor.com/ckeditor-4/
https://github.com/pancodia/django-ckeditor5
https://ckeditor.com/ckeditor-5/
# 变更 #
20190304 - v0.0.1 初始化项目 CKEditor 5集成v11.0.1, 新版本django2.1.7测试可用
20190305 - v0.0.2 添加demo
20190306 - v0.0.3 添加大小配置
20190306 - v0.0.4 ckeditor5-build-classic11.0.1到v12.0.0 添加 https://www.npmjs.com/package/ckeditor5-code-block
# TODO #
添加图片上传插件添加html源码查看插件
完善安装说明