From 8e8316db54a7fe3769535525edd4339a98e7c744 Mon Sep 17 00:00:00 2001 From: DeanWu Date: Thu, 19 Dec 2019 11:14:31 +0800 Subject: [PATCH] update --- README.md | 5 ++++- README_CN.md | 5 ++++- setup.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a85c349..d8cf194 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,10 @@ **Django-mdeditor** was inspired by great [django-ckeditor](https://github.com/django-ckeditor/django-ckeditor). -**Note:** For Markdown page rendering issues, backend rendering is recommended. Because `Editor.md` has not been updated for a long time, some bugs and compatibility issues need to be debugged. Of course, front-end students can choose. +**Note:** + +- For Markdown page rendering issues, backend rendering is recommended. Because `Editor.md` has not been updated for a long time, some bugs and compatibility issues need to be debugged. Of course, front-end students can choose. +- Regarding the `Jquery` conflict, it cannot be deleted because it is required by the admin backend. It is recommended to separate the editing page on a single page or a full screen directly, using its own static file to distinguish it from other pages. ## Features diff --git a/README_CN.md b/README_CN.md index 467b29f..cbc52a3 100644 --- a/README_CN.md +++ b/README_CN.md @@ -14,7 +14,10 @@ **Django-mdeditor** 的灵感参考自伟大的项目 [django-ckeditor](https://github.com/django-ckeditor/django-ckeditor). -**注:** 关于Markdown页面渲染问题,建议后端渲染。因`Editor.md` 已长时间不更新有些bug和兼容性问题需要自己调试,当然前端同学可自行选择。 +**注:** + +- 关于Markdown页面渲染问题,建议后端渲染。因`Editor.md` 已长时间不更新有些bug和兼容性问题需要自己调试,当然前端同学可自行选择。 +- 关于`Jquery`冲突问题,因admin后端需要,无法删除。建议将编辑页面单独一页或直接单独全屏一页,使用自己单独的静态文件,与其他页面区分。 ## 功能 diff --git a/setup.py b/setup.py index e99ab08..a5a07ee 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import os from setuptools import find_packages, setup -with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8') as readme: +with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: long_description = readme.read() # allow setup.py to be run from any path