Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
pylixm committed Dec 19, 2019
1 parent 72f9ce1 commit 8e8316d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
5 changes: 4 additions & 1 deletion README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -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后端需要,无法删除。建议将编辑页面单独一页或直接单独全屏一页,使用自己单独的静态文件,与其他页面区分。

## 功能

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 8e8316d

Please sign in to comment.